diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-20 13:48:58 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-10-07 13:20:00 +0200 |
commit | 610f3388c781055fcfc3f1ea8a027b1b9cbc5bae (patch) | |
tree | 563e9c044e7261c6e9d60adedb2b2481227379f7 /javaunohelper | |
parent | 831051f55e22e909cc140e3ec4d1aae282a92fcd (diff) |
java: no need to check for null before calling instanceof
the instanceof check returns false when passed a null value
Change-Id: I7742d0d9cf25ef23d9adee7328f701c7efeea8b5
Diffstat (limited to 'javaunohelper')
-rw-r--r-- | javaunohelper/test/com/sun/star/lib/uno/helper/PropertySet_Test.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/javaunohelper/test/com/sun/star/lib/uno/helper/PropertySet_Test.java b/javaunohelper/test/com/sun/star/lib/uno/helper/PropertySet_Test.java index 9ceb74d46027..62ccaa401f0c 100644 --- a/javaunohelper/test/com/sun/star/lib/uno/helper/PropertySet_Test.java +++ b/javaunohelper/test/com/sun/star/lib/uno/helper/PropertySet_Test.java @@ -1603,7 +1603,7 @@ class util static boolean isVoidAny(Object obj) { boolean ret= false; - if( obj != null && obj instanceof Any) + if(obj instanceof Any) { Any a= (Any) obj; if( a.getType().getTypeClass().equals( TypeClass.INTERFACE) |