Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 325923 | Differences between
and this patch

Collapse All | Expand All

(-)UI/org/eclipse/rse/ui/operations/SystemFetchOperation.java (-4 / +7 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2004, 2010 IBM Corporation and others.
2
 * Copyright (c) 2004, 2011 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 26-32 Link Here
26
 * David McKnight   (IBM)        - [260777] [ssh] Deadlock when changing selection after multiple hibernate/resume cycles
26
 * David McKnight   (IBM)        - [260777] [ssh] Deadlock when changing selection after multiple hibernate/resume cycles
27
 * David McKnight   (IBM)        - [283793] [dstore] Expansion indicator(+) does not reset after no connect
27
 * David McKnight   (IBM)        - [283793] [dstore] Expansion indicator(+) does not reset after no connect
28
 * David McKnight   (IBM)        - [316565] Failed to resolve the filter for a non-connected subsystem
28
 * David McKnight   (IBM)        - [316565] Failed to resolve the filter for a non-connected subsystem
29
 * David McKnight   (IBM)        - [325923] [dstore] Cancel message not suitable in "Import Host Certificate" window
29
 * David McKnight   (IBM)        - [325923] SystemFetchOperation Cancel message not suitable
30
 *******************************************************************************/
30
 *******************************************************************************/
31
31
32
package org.eclipse.rse.ui.operations;
32
package org.eclipse.rse.ui.operations;
Lines 318-325 Link Here
318
					return false;
318
					return false;
319
				}
319
				}
320
				catch (Exception e)
320
				catch (Exception e)
321
				{
321
				{					
322
					showOperationErrorMessage(null, e, ss);
322
					// bug 325923 - it's inappropriate to display such messages on cancel
323
					if (!(e instanceof InterruptedException) && !(e instanceof OperationCanceledException)){
324
						showOperationErrorMessage(null, e, ss);
325
					}
323
					return false;
326
					return false;
324
				}
327
				}
325
				finally {
328
				finally {

Return to bug 325923