diff options
Diffstat (limited to 'test/080-oom-throw/src/Main.java')
-rw-r--r-- | test/080-oom-throw/src/Main.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/080-oom-throw/src/Main.java b/test/080-oom-throw/src/Main.java index f007b2535c..0ae92a96dc 100644 --- a/test/080-oom-throw/src/Main.java +++ b/test/080-oom-throw/src/Main.java @@ -105,7 +105,7 @@ public class Main { static boolean triggerReflectionOOM() { try { Class<?> c = Main.class; - Method m = c.getMethod("blowup", (Class[]) null); + Method m = c.getMethod("blowup"); holder = new Object[1000000]; m.invoke(null); holder = null; |