Skip to content

Commit

Permalink
unnecessary cast.
Browse files Browse the repository at this point in the history
  • Loading branch information
thiago committed Aug 11, 2004
1 parent 9fa640f commit a87690c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/java/luajava/LuaObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ public Object[] call(Object[] args, int nres) throws LuaException
nargs = args.length;
for (int i = 0; i < nargs; i++)
{
Object obj = (Object) args[i];
Object obj = args[i];
L.pushObjectValue(obj);
}
}
Expand Down

0 comments on commit a87690c

Please sign in to comment.