1) Removed the to lower case conversion of the remote source path on Win systems...
authorrobekras <robekras>
Sun, 22 Oct 2006 14:29:53 +0000 (14:29 +0000)
committerrobekras <robekras>
Sun, 22 Oct 2006 14:29:53 +0000 (14:29 +0000)
net.sourceforge.phpeclipse.launching/src/net/sourceforge/phpdt/internal/launching/PHPSourceLocator.java

index 652a6c7..03a163c 100644 (file)
@@ -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, ""));
   }
 
   /**