From e6cf992af74b993f278a61c31a16b7d2702b06fb Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Tue, 15 Mar 2011 13:43:36 -0600 Subject: [PATCH] uncomment testStatic call in DefineClass I had commented it out for debugging purposes and forgot to uncomment it. --- test/DefineClass.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/DefineClass.java b/test/DefineClass.java index ea3b6362ae..4cff3ecfde 100644 --- a/test/DefineClass.java +++ b/test/DefineClass.java @@ -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); } }