diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-05 13:11:50 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-08 09:48:19 +0200 |
commit | 8f020a45fa69c9458844b8b621df2e0b15ec3d16 (patch) | |
tree | d428a990718d1c7f14ab22f058f74daf7ffebacc /jurt/com | |
parent | e5bc8b60ecfca09a2014ab7090659f3428c8efa0 (diff) |
java: redundant assignment, variable can only be null
Change-Id: I91209c5c185cf097a1609244419d73d4757d7d18
Diffstat (limited to 'jurt/com')
-rw-r--r-- | jurt/com/sun/star/comp/loader/JavaLoader.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/jurt/com/sun/star/comp/loader/JavaLoader.java b/jurt/com/sun/star/comp/loader/JavaLoader.java index 708a2ee18fc4..d7f757a701f9 100644 --- a/jurt/com/sun/star/comp/loader/JavaLoader.java +++ b/jurt/com/sun/star/comp/loader/JavaLoader.java @@ -316,9 +316,7 @@ public class JavaLoader implements XImplementationLoader, try { method = clazz.getMethod("__getServiceFactory", paramTypes); } catch ( NoSuchMethodException noSuchMethodEx) { - method = null; } catch ( SecurityException secEx) { - method = null; } } |