Correct typos
This commit is contained in:
@@ -24,7 +24,7 @@ package org.luaj.vm2;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Constants for lua limits and opcodes
|
* Constants for lua limits and opcodes
|
||||||
* @deprecatd these will all move to LuaC or LoadState or DumpState
|
* @deprecated these will all move to LuaC or LoadState or DumpState
|
||||||
*/
|
*/
|
||||||
public class Lua {
|
public class Lua {
|
||||||
/** version is supplied by ant build task */
|
/** version is supplied by ant build task */
|
||||||
|
|||||||
@@ -556,12 +556,12 @@ public class LuaTable extends LuaValue {
|
|||||||
array[j] = a;
|
array[j] = a;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @deprecate - count via iteration instead */
|
/** @deprecated - count via iteration instead */
|
||||||
public int keyCount() {
|
public int keyCount() {
|
||||||
return keys().length;
|
return keys().length;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @deprecate - use next() instead */
|
/** @deprecated - use next() instead */
|
||||||
public LuaValue[] keys() {
|
public LuaValue[] keys() {
|
||||||
Vector l = new Vector();
|
Vector l = new Vector();
|
||||||
LuaValue k = LuaValue.NIL;
|
LuaValue k = LuaValue.NIL;
|
||||||
|
|||||||
Reference in New Issue
Block a user