diff --git a/app/src/processing/app/debug/Compiler.java b/app/src/processing/app/debug/Compiler.java index 6a62e3deb..0df696724 100644 --- a/app/src/processing/app/debug/Compiler.java +++ b/app/src/processing/app/debug/Compiler.java @@ -74,8 +74,8 @@ public class Compiler implements MessageConsumer { * @return * @throws RunnerException */ - public boolean compile(Sketch sketch, - String buildPath) throws RunnerException { + public boolean compileJavac(Sketch sketch, + String buildPath) throws RunnerException { // com.sun.tools.javac.Main javac = new com.sun.tools.javac.Main(); this.sketch = sketch; @@ -176,7 +176,7 @@ public class Compiler implements MessageConsumer { } - public boolean compileJikes(Sketch sketch, String buildPath) + public boolean compile(Sketch sketch, String buildPath) throws RunnerException { this.sketch = sketch;