src/java.base/windows/classes/java/io/WinNTFileSystem.java
changeset 49281 6712bdd93e4e
parent 48927 847a988152b8
child 51517 edcf0d527658
--- a/src/java.base/windows/classes/java/io/WinNTFileSystem.java	Thu Mar 22 15:28:33 2018 +0100
+++ b/src/java.base/windows/classes/java/io/WinNTFileSystem.java	Thu Mar 22 08:41:06 2018 -0700
@@ -50,7 +50,7 @@
         slash = props.getProperty("file.separator").charAt(0);
         semicolon = props.getProperty("path.separator").charAt(0);
         altSlash = (this.slash == '\\') ? '/' : '\\';
-        userDir = props.getProperty("user.dir");
+        userDir = normalize(props.getProperty("user.dir"));
     }
 
     private boolean isSlash(char c) {