diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-15 16:28:22 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-20 11:47:47 +0200 |
commit | 6884ef6317ddc29a713a342fb102e28ebc8fa5cc (patch) | |
tree | e5c6b203f6c58e118f2000bee4c23769b4cc36da /desktop/test | |
parent | 8c9fdc4a963fd55da59a93c979071f53b84fbc24 (diff) |
java: don't catch and then just rethrow an exception
without doing anything else useful
Change-Id: I5803d84d46e0a70e1759f2202e2c2273087f8723
Diffstat (limited to 'desktop/test')
-rw-r--r-- | desktop/test/deployment/options/handler/com/sun/star/comp/extensionoptions/OptionsEventHandler.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/desktop/test/deployment/options/handler/com/sun/star/comp/extensionoptions/OptionsEventHandler.java b/desktop/test/deployment/options/handler/com/sun/star/comp/extensionoptions/OptionsEventHandler.java index f2d8e4f97a8e..559fbd810f64 100644 --- a/desktop/test/deployment/options/handler/com/sun/star/comp/extensionoptions/OptionsEventHandler.java +++ b/desktop/test/deployment/options/handler/com/sun/star/comp/extensionoptions/OptionsEventHandler.java @@ -134,8 +134,6 @@ public class OptionsEventHandler { if (sMethod.equals("external_event") ){ try { return handleExternalEvent(aWindow, aEventObject); - } catch (com.sun.star.uno.RuntimeException re) { - throw re; } catch (com.sun.star.uno.Exception e) { throw new WrappedTargetException(sMethod, this, e); } |