1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-14 04:25:21 +02:00

[216252] singe ' instead of ''

This commit is contained in:
David McKnight 2008-02-22 01:22:51 +00:00
parent 37d6676957
commit 0d642f69f6

View file

@ -157,7 +157,7 @@ public class RSECoreRegistry implements IRSECoreRegistry {
accessedSystemTypeCache.put(type.getId(), type);
accessedSystemTypeCache.put(type.getName(), type);
String message = "Successfully registered RSE system type ''{0}'' (id = ''{1}'')."; //$NON-NLS-1$
String message = "Successfully registered RSE system type '{0}' (id = '{1}')."; //$NON-NLS-1$
message = NLS.bind(message, type.getLabel(), type.getId());
RSECorePlugin.getDefault().getLogger().logInfo(message);
} else {
@ -188,7 +188,7 @@ public class RSECoreRegistry implements IRSECoreRegistry {
accessedSystemTypeCache.put(type.getId(), type);
accessedSystemTypeCache.put(type.getName(), type);
String message = "Successfully registered RSE system type ''{0}'' (id = ''{1}'')."; //$NON-NLS-1$
String message = "Successfully registered RSE system type '{0}' (id = '{1}')."; //$NON-NLS-1$
message = NLS.bind(message, type.getLabel(), type.getId() );
RSECorePlugin.getDefault().getLogger().logInfo(message);
} else {