Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2005-05-03 06:12:42 +0000
committerslewis2005-05-03 06:12:42 +0000
commit437b45b9270d6742db349dda25410957346adbea (patch)
treeecd0ad3be247a9bfeac016b11bf1ef2a4a7808f3
parent6024efc127c2987a31c27690eb6c7fa2e627ee0a (diff)
downloadorg.eclipse.ecf-437b45b9270d6742db349dda25410957346adbea.tar.gz
org.eclipse.ecf-437b45b9270d6742db349dda25410957346adbea.tar.xz
org.eclipse.ecf-437b45b9270d6742db349dda25410957346adbea.zip
Fixed messaging for consistency
-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 55667f084..9195cbe36 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
@@ -266,7 +266,7 @@ public class IDFactory {
public static final ID makeID(String namespacename, Object[] args)
throws IDInstantiationException {
Namespace n = getNamespaceByName(namespacename);
- if (n == null) throw new IDInstantiationException("Namespace named "+namespacename+" not found");
+ if (n == null) throw new IDInstantiationException("Namespace "+namespacename+" not found");
return makeID(n, args);
}

Back to the top