1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-19 14:15:50 +02:00

[231964] [ssh] SSH login dialog appears twice after cancel, when doing Refresh on a node

This commit is contained in:
David McKnight 2008-05-14 20:53:04 +00:00
parent 34fbce31eb
commit 0c70641067

View file

@ -17,6 +17,7 @@
* Martin Oberhuber (Wind River) - [189272] exception when canceling ssh connect
* David Dykstal (IBM) - [189483] add notification when canceling password prompting
* David McKnight (IBM) - [225747] [dstore] Trying to connect to an "Offline" system throws an NPE
* David McKnight (IBM) - [231964] [ssh] SSH login dialog appears twice after cancel, when doing Refresh on a node
*******************************************************************************/
package org.eclipse.rse.ui.operations;
@ -176,6 +177,9 @@ public class SystemFetchOperation extends JobChangeAdapter implements IRunnableW
catch (InterruptedException e) {
isCancelled = true;
}
catch (OperationCanceledException e) {
isCancelled = true;
}
catch (Exception e)
{