diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-05 12:18:20 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-08 09:48:19 +0200 |
commit | e5bc8b60ecfca09a2014ab7090659f3428c8efa0 (patch) | |
tree | 479fea82acab2e4fe48a796706b73b69a0a938e7 /jurt | |
parent | b58c053fed3c7e2e1e6a4195254e639976a3a809 (diff) |
java: variable cannot be null
remove null check where null-analyis reveals the variable cannot be null
Change-Id: Ied0a24665514bbf68c2ed5f15af9e5c2232a8033
Diffstat (limited to 'jurt')
-rw-r--r-- | jurt/com/sun/star/uno/AnyConverter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jurt/com/sun/star/uno/AnyConverter.java b/jurt/com/sun/star/uno/AnyConverter.java index 4e741ba258ec..873deb157da2 100644 --- a/jurt/com/sun/star/uno/AnyConverter.java +++ b/jurt/com/sun/star/uno/AnyConverter.java @@ -621,7 +621,7 @@ public class AnyConverter break; case TypeClass.ENUM_value: if (tc == TypeClass.ENUM_value && - (null == destTClass || destType.equals( type ) /* optional destType */)) + (destType.equals( type ) /* optional destType */)) { return object; } |