uncomment testStatic call in DefineClass

I had commented it out for debugging purposes and forgot to uncomment
it.
This commit is contained in:
Joel Dice 2011-03-15 13:43:36 -06:00
parent a3a7a7a2de
commit e6cf992af7

View File

@ -49,7 +49,7 @@ public class DefineClass {
} }
public static void main(String[] args) throws Exception { public static void main(String[] args) throws Exception {
//testStatic(); testStatic();
testDerived(); testDerived();
} }
@ -59,7 +59,7 @@ public class DefineClass {
} }
public Class defineClass(String name, byte[] bytes) { public Class defineClass(String name, byte[] bytes) {
return super.defineClass(name, bytes, 0, bytes.length); return defineClass(name, bytes, 0, bytes.length);
} }
} }