Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/infra/properties/org.eclipse.papyrus.infra.properties/src/org/eclipse/papyrus/infra/properties/catalog/PropertiesURIHandler.java')
-rw-r--r--plugins/infra/properties/org.eclipse.papyrus.infra.properties/src/org/eclipse/papyrus/infra/properties/catalog/PropertiesURIHandler.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/infra/properties/org.eclipse.papyrus.infra.properties/src/org/eclipse/papyrus/infra/properties/catalog/PropertiesURIHandler.java b/plugins/infra/properties/org.eclipse.papyrus.infra.properties/src/org/eclipse/papyrus/infra/properties/catalog/PropertiesURIHandler.java
index 8886a5f56ad..0f19144d3be 100644
--- a/plugins/infra/properties/org.eclipse.papyrus.infra.properties/src/org/eclipse/papyrus/infra/properties/catalog/PropertiesURIHandler.java
+++ b/plugins/infra/properties/org.eclipse.papyrus.infra.properties/src/org/eclipse/papyrus/infra/properties/catalog/PropertiesURIHandler.java
@@ -61,11 +61,11 @@ public class PropertiesURIHandler implements URIHandler {
public InputStream createInputStream(URI uri, Map<?, ?> options) throws IOException {
URI convertedURI = getConvertedURI(uri);
if (convertedURI == null) {
- throw new IOException(uri.toString() + " not found");
+ throw new IOException(uri.toString() + " not found"); //$NON-NLS-1$
}
URIHandler handler = getDelegateHandler(convertedURI);
if (handler == null) {
- throw new IOException(uri.toString() + " : no handler found");
+ throw new IOException(uri.toString() + " : no handler found"); //$NON-NLS-1$
}
return handler.createInputStream(convertedURI, options);
}

Back to the top