From 8d099fd7d869f159cc68663cb0163485ce2c1f4f Mon Sep 17 00:00:00 2001 From: David McKnight Date: Thu, 14 Jun 2007 12:56:43 +0000 Subject: [PATCH] [191280] amendment to Xuan's patch for virtuals --- .../rse/dstore/universal/miners/UniversalFileSystemMiner.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rse/plugins/org.eclipse.rse.services.dstore/miners/org/eclipse/rse/dstore/universal/miners/UniversalFileSystemMiner.java b/rse/plugins/org.eclipse.rse.services.dstore/miners/org/eclipse/rse/dstore/universal/miners/UniversalFileSystemMiner.java index e3e08c8e798..5d4b1fdbd6a 100644 --- a/rse/plugins/org.eclipse.rse.services.dstore/miners/org/eclipse/rse/dstore/universal/miners/UniversalFileSystemMiner.java +++ b/rse/plugins/org.eclipse.rse.services.dstore/miners/org/eclipse/rse/dstore/universal/miners/UniversalFileSystemMiner.java @@ -2044,7 +2044,7 @@ private DataElement createDataElementFromLSString(DataElement subject, } String oldValue = deObj.getAttribute(DE.A_VALUE); String newValue = rootPath + ArchiveHandlerManager.VIRTUAL_SEPARATOR + virtualPath; - if (!oldValue.startsWith(newValue)) + if (!oldValue.equals(newValue)) { deObj.setAttribute(DE.A_VALUE, newValue); //$NON-NLS-1$ }