Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/osgi/EquinoxRegistryStrategy.java')
-rw-r--r--bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/osgi/EquinoxRegistryStrategy.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/osgi/EquinoxRegistryStrategy.java b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/osgi/EquinoxRegistryStrategy.java
index d4041185a..6238a7ae1 100644
--- a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/osgi/EquinoxRegistryStrategy.java
+++ b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/osgi/EquinoxRegistryStrategy.java
@@ -93,10 +93,10 @@ public class EquinoxRegistryStrategy extends RegistryStrategyOSGI {
try {
new ExtensionEventDispatcherJob(listeners, deltas, registry).schedule();
return; // all done - most typical use case
- } catch (NoClassDefFoundError e) {
- useJobs = false; // Jobs are missing
- } catch (IllegalStateException e) {
- useJobs = false; // Jobs bundles was stopped
+ } catch (NoClassDefFoundError | IllegalStateException e) {
+ useJobs = false;
+ // Jobs are missing or
+ // Jobs bundles was stopped
}
}
super.scheduleChangeEvent(listeners, deltas, registry);

Back to the top