From a3a57bebcd761a0c0910e482ffdc4a3f11cbcde5 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 18 Nov 2014 11:46:50 +0200 Subject: java: fix some raw types warnings Change-Id: I0e00739ac36ccc8704ad3c4e4adfa377a6b01f43 --- bridges/source/jni_uno/java/com/sun/star/bridges/jni_uno/JNI_proxy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bridges/source') 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 )) -- cgit