diff options
Diffstat (limited to 'test/044-proxy/src/NativeProxy.java')
-rw-r--r-- | test/044-proxy/src/NativeProxy.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/044-proxy/src/NativeProxy.java b/test/044-proxy/src/NativeProxy.java index b425da87b5..c609dc25b3 100644 --- a/test/044-proxy/src/NativeProxy.java +++ b/test/044-proxy/src/NativeProxy.java @@ -40,7 +40,7 @@ public class NativeProxy { try { NativeInterface inf = (NativeInterface)Proxy.newProxyInstance( NativeProxy.class.getClassLoader(), - new Class[] { NativeInterface.class }, + new Class<?>[] { NativeInterface.class }, new NativeInvocationHandler()); nativeCall(inf); |