diff options
author | Noel Grandin <noel@peralex.com> | 2014-11-18 11:46:50 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-11-18 12:44:34 +0200 |
commit | a3a57bebcd761a0c0910e482ffdc4a3f11cbcde5 (patch) | |
tree | c92e942fdcb729dba4d87c2844efab540286fb85 /bridges | |
parent | b2196c1426af30855e7ff124351d4026ae33367c (diff) |
java: fix some raw types warnings
Change-Id: I0e00739ac36ccc8704ad3c4e4adfa377a6b01f43
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_proxy.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_proxy.java b/bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_proxy.java index d3a7425d83c6..732d30b925b5 100644 --- a/bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_proxy.java +++ b/bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_proxy.java @@ -150,7 +150,7 @@ public final class JNI_proxy implements java.lang.reflect.InvocationHandler Object proxy, java.lang.reflect.Method method, Object args [] ) throws Throwable { - Class decl_class = method.getDeclaringClass(); + Class<?> decl_class = method.getDeclaringClass(); String method_name = method.getName(); if (Object.class.equals( decl_class )) |