diff options
Diffstat (limited to 'java/test/Ice/classLoader/AllTests.java')
-rw-r--r-- | java/test/Ice/classLoader/AllTests.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/java/test/Ice/classLoader/AllTests.java b/java/test/Ice/classLoader/AllTests.java index f5d127be9c2..d0181cff1a6 100644 --- a/java/test/Ice/classLoader/AllTests.java +++ b/java/test/Ice/classLoader/AllTests.java @@ -22,6 +22,7 @@ public class AllTests { private static class MyObjectFactory implements Ice.ObjectFactory { + @Override public Ice.Object create(String type) { if(type.equals("::Test::AbstractClass")) @@ -33,6 +34,7 @@ public class AllTests return null; } + @Override public void destroy() { // Nothing to do @@ -41,6 +43,7 @@ public class AllTests private static class MyClassLoader extends ClassLoader { + @Override protected Class<?> loadClass(String name, boolean resolve) throws ClassNotFoundException { |