Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/ExtensionRegistry.java')
-rw-r--r--bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/ExtensionRegistry.java8
1 files changed, 1 insertions, 7 deletions
diff --git a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/ExtensionRegistry.java b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/ExtensionRegistry.java
index fa58c9658..445ad805a 100644
--- a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/ExtensionRegistry.java
+++ b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/ExtensionRegistry.java
@@ -1099,13 +1099,7 @@ public class ExtensionRegistry implements IExtensionRegistry, IDynamicExtensionR
if (status == IStatus.ERROR || status == IStatus.CANCEL)
return false;
}
- } catch (ParserConfigurationException e) {
- logError(ownerName, contributionName, e);
- return false;
- } catch (SAXException e) {
- logError(ownerName, contributionName, e);
- return false;
- } catch (IOException e) {
+ } catch (ParserConfigurationException | SAXException | IOException e) {
logError(ownerName, contributionName, e);
return false;
} finally {

Back to the top