View | Details | Raw Unified | Return to bug 191280 | Differences between
and this patch

Collapse All | Expand All

(-)miners/org/eclipse/rse/dstore/universal/miners/UniversalFileSystemMiner.java (-1 / +1 lines)
Lines 2044-2050 Link Here
2044
							}
2044
							}
2045
							String oldValue = deObj.getAttribute(DE.A_VALUE);
2045
							String oldValue = deObj.getAttribute(DE.A_VALUE);
2046
							String newValue = rootPath + ArchiveHandlerManager.VIRTUAL_SEPARATOR + virtualPath;
2046
							String newValue = rootPath + ArchiveHandlerManager.VIRTUAL_SEPARATOR + virtualPath;
2047
							if (!oldValue.startsWith(newValue))  
2047
							if (!oldValue.equals(newValue))  
2048
						    {
2048
						    {
2049
						        deObj.setAttribute(DE.A_VALUE, newValue); //$NON-NLS-1$
2049
						        deObj.setAttribute(DE.A_VALUE, newValue); //$NON-NLS-1$
2050
						    }
2050
						    }

Return to bug 191280