Skip to main content
summaryrefslogtreecommitdiffstats
path: root/xlc
diff options
context:
space:
mode:
authorChris Recoskie2010-05-25 17:58:41 +0000
committerChris Recoskie2010-05-25 17:58:41 +0000
commit7038788c048ea073e1ff259ff928b391bcb33506 (patch)
tree19cfeda15ca00c107d9965c4b0a4493d76c22c86 /xlc
parent825017ddae48fc8af6ed5756b5c4a2ec9b144441 (diff)
downloadorg.eclipse.cdt-7038788c048ea073e1ff259ff928b391bcb33506.tar.gz
org.eclipse.cdt-7038788c048ea073e1ff259ff928b391bcb33506.tar.xz
org.eclipse.cdt-7038788c048ea073e1ff259ff928b391bcb33506.zip
further changes for Bug 291815 - Add an extension point to allow utilities for virtual EFS filesystems
Diffstat (limited to 'xlc')
-rw-r--r--xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/scannerconfig/XLCBuildOutputParserUtility.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/scannerconfig/XLCBuildOutputParserUtility.java b/xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/scannerconfig/XLCBuildOutputParserUtility.java
index f6790d04cf3..72f56a102c9 100644
--- a/xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/scannerconfig/XLCBuildOutputParserUtility.java
+++ b/xlc/org.eclipse.cdt.make.xlc.core/src/org/eclipse/cdt/make/xlc/core/scannerconfig/XLCBuildOutputParserUtility.java
@@ -29,7 +29,7 @@ import org.eclipse.cdt.make.internal.core.scannerconfig.util.KVStringPair;
import org.eclipse.cdt.make.internal.core.scannerconfig.util.SCDOptionsEnum;
import org.eclipse.cdt.make.internal.core.scannerconfig.util.TraceUtil;
import org.eclipse.cdt.make.xlc.core.scannerconfig.util.XLCCommandDSC;
-import org.eclipse.cdt.utils.FileSystemUtilityManager;
+import org.eclipse.cdt.utils.EFSExtensionManager;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
@@ -614,7 +614,7 @@ public class XLCBuildOutputParserUtility {
// to the given path
URI projectURI = project.getLocationURI();
- URI newURI = FileSystemUtilityManager.getDefault().replacePath(projectURI, path.toString());
+ URI newURI = EFSExtensionManager.getDefault().createNewURIFromPath(projectURI, path.toString());
IFile[] files = root.findFilesForLocationURI(newURI);

Back to the top