The javadoc of the java,base module suggests the following code to get a 'jrt:/' FileSystem:
FileSystems.newFileSystem(URI.create("jrt:/"))
But, this code does not compile. It should use `getFileSystem` instead of `newFileSystem`.
FileSystems.newFileSystem(URI.create("jrt:/"))
But, this code does not compile. It should use `getFileSystem` instead of `newFileSystem`.