From 16a71f9958922c76d1275b96397b37c4830ba402 Mon Sep 17 00:00:00 2001 From: robekras Date: Sun, 22 Oct 2006 14:29:53 +0000 Subject: [PATCH] 1) Removed the to lower case conversion of the remote source path on Win systems. This makes no sense as the isPrefexOf function is case sensitive. --- .../phpdt/internal/launching/PHPSourceLocator.java | 9 +-------- 1 files changed, 1 insertions(+), 8 deletions(-) diff --git a/net.sourceforge.phpeclipse.launching/src/net/sourceforge/phpdt/internal/launching/PHPSourceLocator.java b/net.sourceforge.phpeclipse.launching/src/net/sourceforge/phpdt/internal/launching/PHPSourceLocator.java index 652a6c7..03a163c 100644 --- a/net.sourceforge.phpeclipse.launching/src/net/sourceforge/phpdt/internal/launching/PHPSourceLocator.java +++ b/net.sourceforge.phpeclipse.launching/src/net/sourceforge/phpdt/internal/launching/PHPSourceLocator.java @@ -62,14 +62,7 @@ public class PHPSourceLocator implements IPersistableSourceLocator, ISourcePrese this.pathMap = configuration.getAttribute (PHPLaunchConfigurationAttribute.FILE_MAP, (Map)null); this.projectName = configuration.getAttribute (PHPLaunchConfigurationAttribute.PROJECT_NAME, ""); - if (Platform.getOS().equals(Platform.OS_WIN32)) { - this.remoteSourcePath = new Path ((configuration.getAttribute (PHPLaunchConfigurationAttribute.REMOTE_PATH, "")).toLowerCase()); - } - else { - this.remoteSourcePath = new Path (configuration.getAttribute (PHPLaunchConfigurationAttribute.REMOTE_PATH, "")); - } - -// system.os.name + this.remoteSourcePath = new Path (configuration.getAttribute (PHPLaunchConfigurationAttribute.REMOTE_PATH, "")); } /** -- 1.7.1