We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68160ee commit 5dd6bd2Copy full SHA for 5dd6bd2
src/main/java/mods/Hileb/shotaasm/impl/compiler/Compiler.java
@@ -68,7 +68,7 @@ public CompileError compile() {
68
List<String> pathList = new LinkedList<>();
69
for (URL url : extraClasspath) {
70
try {
71
- pathList.add(new File(url.toURI()).getAbsolutePath());
+ pathList.add(url.toString());
72
} catch (URISyntaxException ignored) {} // Ignore the lib.
73
}
74
String systemClasspath = System.getProperty("java.class.path");
0 commit comments