We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c32acd commit 7c0243eCopy full SHA for 7c0243e
src/main/java/org/squiddev/cobalt/LuaTable.java
@@ -80,8 +80,8 @@
80
* @see LuaValue
81
*/
82
public final class LuaTable extends LuaValue {
83
- private Object[] EMPTY_ARRAY = new Object[0];
84
- private Node[] EMPTY_NODES = new Node[0];
+ private static final Object[] EMPTY_ARRAY = new Object[0];
+ private static final Node[] EMPTY_NODES = new Node[0];
85
private static final LuaString N = valueOf("n");
86
87
private Object[] array = EMPTY_ARRAY;
0 commit comments