We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 611bd3c + 54cbd65 commit 689240eCopy full SHA for 689240e
retrolambda/src/main/java/net/orfjackal/retrolambda/files/OutputDirectory.java
@@ -22,7 +22,7 @@ public void writeClass(byte[] bytecode) throws IOException {
22
return;
23
}
24
ClassReader cr = new ClassReader(bytecode);
25
- Path relativePath = Paths.get(cr.getClassName() + ".class");
+ Path relativePath = outputDir.getFileSystem().getPath(cr.getClassName() + ".class");
26
writeFile(relativePath, bytecode);
27
28
0 commit comments