Skip to content

Commit b8bd259

Browse files
eastigPaul Hohensee
authored andcommitted
8271737: Only normalize the cached user.dir property once
Reviewed-by: phh
1 parent 89999f7 commit b8bd259

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/java.base/windows/classes/java/io/WinNTFileSystem.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ private String getUserPath() {
356356
if (sm != null) {
357357
sm.checkPropertyAccess("user.dir");
358358
}
359-
return normalize(userDir);
359+
return userDir;
360360
}
361361

362362
private String getDrive(String path) {

0 commit comments

Comments
 (0)