Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 832935
Collapse All | Expand All

(-)a/src/java_tools/buildjar/java/com/google/devtools/build/buildjar/VanillaJavaBuilder.java.ORIG (-1 / +3 lines)
Lines 78-84 Link Here
78
  private FileSystem getJarFileSystem(Path sourceJar) throws IOException {
78
  private FileSystem getJarFileSystem(Path sourceJar) throws IOException {
79
    FileSystem fs = filesystems.get(sourceJar);
79
    FileSystem fs = filesystems.get(sourceJar);
80
    if (fs == null) {
80
    if (fs == null) {
81
      filesystems.put(sourceJar, fs = FileSystems.newFileSystem(sourceJar, null));
81
      // used for disambiguation from newFileSystem(Path path, Map<String,?> env)
82
      java.lang.ClassLoader nullClassLoader = null;
83
      filesystems.put(sourceJar, fs = FileSystems.newFileSystem(sourceJar, nullClassLoader));
82
    }
84
    }
83
    return fs;
85
    return fs;
84
  }
86
  }

Return to bug 832935