mirror of
https://github.com/corda/corda.git
synced 2025-01-03 19:54:13 +00:00
uncomment testStatic call in DefineClass
I had commented it out for debugging purposes and forgot to uncomment it.
This commit is contained in:
parent
a3a7a7a2de
commit
e6cf992af7
@ -49,7 +49,7 @@ public class DefineClass {
|
||||
}
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
//testStatic();
|
||||
testStatic();
|
||||
testDerived();
|
||||
}
|
||||
|
||||
@ -59,7 +59,7 @@ public class DefineClass {
|
||||
}
|
||||
|
||||
public Class defineClass(String name, byte[] bytes) {
|
||||
return super.defineClass(name, bytes, 0, bytes.length);
|
||||
return defineClass(name, bytes, 0, bytes.length);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user