mirror of
https://github.com/corda/corda.git
synced 2025-01-06 05:04:20 +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 {
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user