summaryrefslogtreecommitdiff
path: root/test/616-cha-proxy-method-inline/src/Main.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/616-cha-proxy-method-inline/src/Main.java')
-rw-r--r--test/616-cha-proxy-method-inline/src/Main.java4
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) {