--- old/src/java.base/unix/classes/sun/nio/fs/UnixFileStore.java 2018-03-07 17:31:06.000000000 -0800 +++ new/src/java.base/unix/classes/sun/nio/fs/UnixFileStore.java 2018-03-07 17:31:06.000000000 -0800 @@ -260,7 +260,7 @@ private static Properties loadProperties() { Properties result = new Properties(); String fstypes = System.getProperty("java.home") + "/lib/fstypes.properties"; - Path file = Paths.get(fstypes); + Path file = Path.get(fstypes); try { try (ReadableByteChannel rbc = Files.newByteChannel(file)) { result.load(Channels.newReader(rbc, "UTF-8"));