diff --git a/src/the/bytecode/club/bytecodeviewer/compilers/JavaCompiler.java b/src/the/bytecode/club/bytecodeviewer/compilers/JavaCompiler.java index 86e90d06..a7ce7372 100644 --- a/src/the/bytecode/club/bytecodeviewer/compilers/JavaCompiler.java +++ b/src/the/bytecode/club/bytecodeviewer/compilers/JavaCompiler.java @@ -78,7 +78,7 @@ public class JavaCompiler extends Compiler { pb = new ProcessBuilder( BytecodeViewer.javac, "-d", fileStart2, - "-classpath", cp.getAbsolutePath() + ";" + BytecodeViewer.library, + "-classpath", cp.getAbsolutePath() + System.getProperty("path.separator") + BytecodeViewer.library, java.getAbsolutePath() ); }