Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'framework/bundles/org.eclipse.ecf.identity/src')
-rw-r--r--framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/URIID.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/URIID.java b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/URIID.java
index 2f9eea886..6b4fc592e 100644
--- a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/URIID.java
+++ b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/identity/URIID.java
@@ -19,7 +19,10 @@ import org.eclipse.core.runtime.Assert;
*/
public class URIID extends BaseID implements IResourceID {
- static class URIIDNamespace extends Namespace {
+ /**
+ * @since 3.7
+ */
+ public static class URIIDNamespace extends Namespace {
private static final long serialVersionUID = 115165512542491014L;
@@ -42,8 +45,7 @@ public class URIID extends BaseID implements IResourceID {
return new URIID(this, new URI((String) parameters[0]));
throw new IDCreateException("Cannot create URIID");
} catch (Exception e) {
- throw new IDCreateException(URIIDNamespace.this.getName()
- + " createInstance()", e); //$NON-NLS-1$
+ throw new IDCreateException(URIIDNamespace.this.getName() + " createInstance()", e); //$NON-NLS-1$
}
}

Back to the top