From 960ce56afd9318e65e3c6eccca966cfef3f5aa47 Mon Sep 17 00:00:00 2001 From: benfry Date: Sat, 31 May 2008 21:22:52 +0000 Subject: [PATCH] disable javac for release 0138 --- app/src/processing/app/debug/Compiler.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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;