Remove generics
This commit is contained in:
@@ -221,8 +221,8 @@ public class LuaScriptEngine implements ScriptEngine, Compilable {
|
|||||||
this.copyBindingsToGlobals();
|
this.copyBindingsToGlobals();
|
||||||
}
|
}
|
||||||
public void copyBindingsToGlobals() {
|
public void copyBindingsToGlobals() {
|
||||||
for ( Iterator<String> i = b.keySet().iterator(); i.hasNext(); ) {
|
for ( Iterator i = b.keySet().iterator(); i.hasNext(); ) {
|
||||||
String key = i.next();
|
String key = (String) i.next();
|
||||||
Object val = b.get(key);
|
Object val = b.get(key);
|
||||||
LuaValue luakey = toLua(key);
|
LuaValue luakey = toLua(key);
|
||||||
LuaValue luaval = toLua(val);
|
LuaValue luaval = toLua(val);
|
||||||
|
|||||||
Reference in New Issue
Block a user