1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +02:00

[338031] Remote Shell view tabs should have close (x) icon

-implicit connect not needed on remove shell
This commit is contained in:
David McKnight 2011-03-16 16:23:43 +00:00
parent f86d84962d
commit 753a698c0f

View file

@ -23,6 +23,7 @@
* David McKnight (IBM) - [252708] Saving Profile Job happens when not changing Property Values on Connections
* David McKnight (IBM) - [272882] [api] Handle exceptions in IService.initService()
* David McKnight (IBM) [302724] problems with environment variable substitution
* David McKnight (IBM) - [338031] Remote Shell view tabs should have close (x) icon
*******************************************************************************/
package org.eclipse.rse.subsystems.shells.core.subsystems;
@ -1202,13 +1203,6 @@ public abstract class RemoteCmdSubSystem extends SubSystem implements IRemoteCmd
public void performOperation(IProgressMonitor mon) throws InterruptedException, InvocationTargetException,
Exception
{
String msg = null;
int totalWorkUnits = IProgressMonitor.UNKNOWN;
if (!implicitConnect(false, mon, msg, totalWorkUnits)){
String msgTxt = NLS.bind(ShellStrings.MSG_CONNECT_FAILED, getHostName());
throw new Exception(msgTxt);
}
internalRemoveShell(_runContext);
}
}