Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarsten Hammer2019-05-14 16:35:17 +0000
committerCarsten Hammer2019-05-16 15:04:31 +0000
commit7d3d176e363878f43cd2189e690cc52b40360ce6 (patch)
tree50b717add6eab9ff909ba7cba9ef6883634a97e1 /bundles/org.eclipse.equinox.weaving.caching/src/org/eclipse/equinox/weaving/internal/caching/Activator.java
parent10ee9de3dde07ba516bf2ad72c93779f0fb08100 (diff)
downloadrt.equinox.bundles-7d3d176e363878f43cd2189e690cc52b40360ce6.tar.gz
rt.equinox.bundles-7d3d176e363878f43cd2189e690cc52b40360ce6.tar.xz
rt.equinox.bundles-7d3d176e363878f43cd2189e690cc52b40360ce6.zip
Change-Id: Ib3ca6d20965a8b80b6cbd76b01fa2dcf8e7c840d Signed-off-by: Carsten Hammer <carsten.hammer@t-online.de>
Diffstat (limited to 'bundles/org.eclipse.equinox.weaving.caching/src/org/eclipse/equinox/weaving/internal/caching/Activator.java')
-rw-r--r--bundles/org.eclipse.equinox.weaving.caching/src/org/eclipse/equinox/weaving/internal/caching/Activator.java7
1 files changed, 1 insertions, 6 deletions
diff --git a/bundles/org.eclipse.equinox.weaving.caching/src/org/eclipse/equinox/weaving/internal/caching/Activator.java b/bundles/org.eclipse.equinox.weaving.caching/src/org/eclipse/equinox/weaving/internal/caching/Activator.java
index a648e0ed2..efaf6fcf7 100644
--- a/bundles/org.eclipse.equinox.weaving.caching/src/org/eclipse/equinox/weaving/internal/caching/Activator.java
+++ b/bundles/org.eclipse.equinox.weaving.caching/src/org/eclipse/equinox/weaving/internal/caching/Activator.java
@@ -117,12 +117,7 @@ public class Activator implements BundleActivator {
enabled = false;
}
}
- } catch (final ClassNotFoundException ex) {
- } catch (final SecurityException e) {
- } catch (final NoSuchMethodException e) {
- } catch (final IllegalArgumentException e) {
- } catch (final IllegalAccessException e) {
- } catch (final InvocationTargetException e) {
+ } catch (final ClassNotFoundException | SecurityException | NoSuchMethodException | IllegalArgumentException | IllegalAccessException | InvocationTargetException ex) {
}
return enabled;

Back to the top