mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 07:35:24 +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:
parent
b11a865805
commit
785ecdf6b0
1 changed files with 4 additions and 1 deletions
|
@ -1597,7 +1597,10 @@ public abstract class SubSystem extends RSEModelObject
|
|||
|
||||
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)};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue