fixed some Netbeans code hints

This commit is contained in:
honfika@gmail.com
2014-09-07 22:25:06 +02:00
parent 6c7223bba9
commit 8ae999a617
32 changed files with 507 additions and 509 deletions

View File

@@ -178,7 +178,7 @@ public class ASMSourceEditorPane extends LineMarkedEditorPane implements CaretLi
public void exec() {
HashMap<Integer, Object> args = new HashMap<>();
args.put(0, new Object()); //object "this"
args.put(1, new Long(466561)); //param1
args.put(1, 466561L); //param1
Object o = abc.bodies.get(bodyIndex).getCode().execute(args, abc.constants);
View.showMessageDialog(this, "Returned object:" + o.toString());
}