summaryrefslogtreecommitdiffstats
path: root/desktop
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-15 16:28:22 +0200
committerNoel Grandin <noel@peralex.com>2014-08-20 11:47:47 +0200
commit6884ef6317ddc29a713a342fb102e28ebc8fa5cc (patch)
treee5c6b203f6c58e118f2000bee4c23769b4cc36da /desktop
parentjava: remove modifiers implied by the context (diff)
downloadcore-6884ef6317ddc29a713a342fb102e28ebc8fa5cc.tar.gz
core-6884ef6317ddc29a713a342fb102e28ebc8fa5cc.zip
java: don't catch and then just rethrow an exception
without doing anything else useful Change-Id: I5803d84d46e0a70e1759f2202e2c2273087f8723
Diffstat (limited to 'desktop')
-rw-r--r--desktop/test/deployment/options/handler/com/sun/star/comp/extensionoptions/OptionsEventHandler.java2
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);
}