diff options
Diffstat (limited to 'test/616-cha-proxy-method-inline/src/Main.java')
-rw-r--r-- | test/616-cha-proxy-method-inline/src/Main.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/616-cha-proxy-method-inline/src/Main.java b/test/616-cha-proxy-method-inline/src/Main.java index 10adc209e1..627c15c2a5 100644 --- a/test/616-cha-proxy-method-inline/src/Main.java +++ b/test/616-cha-proxy-method-inline/src/Main.java @@ -23,9 +23,7 @@ class DebugProxy implements java.lang.reflect.InvocationHandler { public static Object newInstance(Object obj) { return java.lang.reflect.Proxy.newProxyInstance( - Foo.class.getClassLoader(), - interfaces, - new DebugProxy(obj)); + Foo.class.getClassLoader(), interfaces, new DebugProxy(obj)); } private DebugProxy(Object obj) { |