1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-14 20:45:22 +02:00

[216252] [api][nls] Resource Strings specific to subsystems should be moved from rse.ui into files.ui / shells.ui / processes.ui where possible

-this is phase 1...still need to get rid of duplicate messages
This commit is contained in:
David McKnight 2008-02-20 21:41:16 +00:00
parent b11a865805
commit 785ecdf6b0

View file

@ -1597,7 +1597,10 @@ public abstract class SubSystem extends RSEModelObject
msg = getSettingMessage(); msg = getSettingMessage();
if (!implicitConnect(false, mon, msg, totalWorkUnits)) throw new Exception(RSEUIPlugin.getPluginMessage(ISystemMessages.MSG_CONNECT_FAILED).makeSubstitution(getHostName()).getLevelOneText()); if (!implicitConnect(false, mon, msg, totalWorkUnits)){
String msgTxt = NLS.bind(SubSystemResources.MSG_CONNECT_FAILED, getHostName());
throw new Exception(msgTxt);
}
runOutputs = new Object[] {internalSetProperties(_subject, _keys, _values, mon)}; runOutputs = new Object[] {internalSetProperties(_subject, _keys, _values, mon)};
} }
} }