--- old/src/share/tools/ProjectCreator/Util.java 2011-02-10 13:17:28.932167300 +0100 +++ new/src/share/tools/ProjectCreator/Util.java 2011-02-10 13:17:28.606148700 +0100 @@ -47,7 +47,7 @@ return sb.toString(); } - static String join(String padder, String v[]) { + static String join(String padder, String v[]) { StringBuffer sb = new StringBuffer(); for (int i=0; i 2) { + if (file.charAt(1) == ':' && file.charAt(2) == '/') { + // convert drive letter to uppercase + String drive = file.substring(0, 1).toUpperCase(); + return drive + file.substring(1); + } + } + return file; } static String sep = File.separator; - static String os = "Win32"; //System.getProperty("os.name"); }