mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-20 06:35:50 +02:00
[231964] [ssh] SSH login dialog appears twice after cancel, when doing Refresh on a node
This commit is contained in:
parent
34fbce31eb
commit
0c70641067
1 changed files with 4 additions and 0 deletions
|
@ -17,6 +17,7 @@
|
||||||
* Martin Oberhuber (Wind River) - [189272] exception when canceling ssh connect
|
* Martin Oberhuber (Wind River) - [189272] exception when canceling ssh connect
|
||||||
* David Dykstal (IBM) - [189483] add notification when canceling password prompting
|
* 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) - [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;
|
package org.eclipse.rse.ui.operations;
|
||||||
|
@ -176,6 +177,9 @@ public class SystemFetchOperation extends JobChangeAdapter implements IRunnableW
|
||||||
catch (InterruptedException e) {
|
catch (InterruptedException e) {
|
||||||
isCancelled = true;
|
isCancelled = true;
|
||||||
}
|
}
|
||||||
|
catch (OperationCanceledException e) {
|
||||||
|
isCancelled = true;
|
||||||
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue