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 198650
Collapse All | Expand All

(-)UI/org/eclipse/rse/internal/ui/view/SystemView.java (-1 / +2 lines)
Lines 39-44 Link Here
39
 * David McKnight   (IBM)        - [196662] Avoid main thread query to check exists when remote refreshing
39
 * David McKnight   (IBM)        - [196662] Avoid main thread query to check exists when remote refreshing
40
 * Kevin Doyle  (IBM)            - [198576] Renaming a folder directly under a Filter doesn't update children
40
 * Kevin Doyle  (IBM)            - [198576] Renaming a folder directly under a Filter doesn't update children
41
 * Kevin Doyle (IBM) 			 - [196582] Deprecated getRemoteObjectIdentifier
41
 * Kevin Doyle (IBM) 			 - [196582] Deprecated getRemoteObjectIdentifier
42
 * Martin Oberhuber (Wind River) - [198650] Fix assertion when restoring workbench state
42
 ********************************************************************************/
43
 ********************************************************************************/
43
44
44
package org.eclipse.rse.internal.ui.view;
45
package org.eclipse.rse.internal.ui.view;
Lines 2989-2995 Link Here
2989
		List matches = new Vector();
2990
		List matches = new Vector();
2990
		// STEP 2: find all references to the object
2991
		// STEP 2: find all references to the object
2991
		findAllRemoteItemReferences(oldElementName, remoteObject, subsystem, matches);
2992
		findAllRemoteItemReferences(oldElementName, remoteObject, subsystem, matches);
2992
		if (remoteObject instanceof String) {
2993
		if (matches.size()>0 && remoteObject instanceof String) {
2993
			//TODO one String may reference multiple different context objects, so we should really iterate over all matches here
2994
			//TODO one String may reference multiple different context objects, so we should really iterate over all matches here
2994
			//See javadoc of findAllRemoteItemReferences
2995
			//See javadoc of findAllRemoteItemReferences
2995
			remoteObject = getFirstRemoteObject(matches);
2996
			remoteObject = getFirstRemoteObject(matches);

Return to bug 198650