diff options
| author | slewis | 2005-01-07 05:40:55 +0000 |
|---|---|---|
| committer | slewis | 2005-01-07 05:40:55 +0000 |
| commit | 9a4b24c59d736572a3ce83cd790ef675b7708da3 (patch) | |
| tree | e83971cef71c894bab27eec2ad3c6faea009b611 | |
| parent | 4f49b68753d96522f2532003df4f8e410af794c5 (diff) | |
| download | org.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.java | 2 |
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); } |
