Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2005-01-07 05:40:55 +0000
committerslewis2005-01-07 05:40:55 +0000
commit9a4b24c59d736572a3ce83cd790ef675b7708da3 (patch)
treee83971cef71c894bab27eec2ad3c6faea009b611
parent4f49b68753d96522f2532003df4f8e410af794c5 (diff)
downloadorg.eclipse.ecf-9a4b24c59d736572a3ce83cd790ef675b7708da3.tar.gz
org.eclipse.ecf-9a4b24c59d736572a3ce83cd790ef675b7708da3.tar.xz
org.eclipse.ecf-9a4b24c59d736572a3ce83cd790ef675b7708da3.zip
Fix for small bug in IDFactory
-rw-r--r--framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/identity/IDFactory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/identity/IDFactory.java b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/identity/IDFactory.java
index a72e2c25b..ef3127b42 100644
--- a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/identity/IDFactory.java
+++ b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/core/identity/IDFactory.java
@@ -141,7 +141,7 @@ public class IDFactory {
public final static Namespace getNamespaceByName(String name)
throws SecurityException {
debug("getNamespaceByName("+name+")");
- Namespace ns = new Namespace(null, name, null, null);
+ Namespace ns = new Namespace(null, name, name, null);
return getNamespace(ns);
}

Back to the top