View | Details | Raw Unified | Return to bug 321358
Collapse All | Expand All

(-)model/org/eclipse/jdt/internal/core/ExternalFoldersManager.java (-1 / +2 lines)
Lines 405-411 Link Here
405
				for (int index = 0; index < this.externalFolders.size(); index++ ) {
405
				for (int index = 0; index < this.externalFolders.size(); index++ ) {
406
					if ((externalPath = (IPath)this.externalFolders.get(index)) != null) {
406
					if ((externalPath = (IPath)this.externalFolders.get(index)) != null) {
407
						IFolder folder = getFolder(externalPath);
407
						IFolder folder = getFolder(externalPath);
408
						folder.refreshLocal(IResource.DEPTH_INFINITE, pm);
408
						if (folder != null)
409
							folder.refreshLocal(IResource.DEPTH_INFINITE, pm);
409
					}
410
					}
410
					// Set the processed ones to null instead of removing the element altogether,
411
					// Set the processed ones to null instead of removing the element altogether,
411
					// so that they will not be considered as duplicates.
412
					// so that they will not be considered as duplicates.

Return to bug 321358