diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-11-09 11:07:34 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-11-09 14:27:47 +0100 |
commit | eee1ff965143910eb52895af471b260564938db6 (patch) | |
tree | 4fb4a55b5b9a8e853cd3ed321a8d953e4b0df3a9 /bridges | |
parent | b4cbd33588c194c21926bf6ab70aa76088a9bb09 (diff) |
enable unchecked lint for our java code
and annotate where necessary, mostly just suppressing the warnings
Change-Id: I8e39d797cde6c7c3f4e3e1bd93a128965ecec81d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159205
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
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 12817e57eeda..200f664f32c3 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 @@ -139,7 +139,7 @@ public final class JNI_proxy implements java.lang.reflect.InvocationHandler public static java.lang.reflect.Constructor get_proxy_ctor( Class clazz ) throws Throwable { - Class proxy_class = java.lang.reflect.Proxy.getProxyClass( + Class<?> proxy_class = java.lang.reflect.Proxy.getProxyClass( s_classloader, new Class [] { clazz, IQueryInterface.class, com.sun.star.lib.uno.Proxy.class } ); |