Skip to content

Commit 5918851

Browse files
author
jdf
committed
The AndroidRunner was calling a method on Editor that really belongs in RunnerListener.java, so I put it there. Then I had to implement that method in Commander.
1 parent 864a83e commit 5918851

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

app/.classpath

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
<classpathentry kind="lib" path="lib/ecj.jar"/>
1919
<classpathentry exported="true" kind="lib" path="lib/ant.jar"/>
2020
<classpathentry exported="true" kind="lib" path="lib/ant-launcher.jar"/>
21-
<classpathentry kind="lib" path="/android-tool/bin"/>
2221
<classpathentry kind="lib" path="lib/apple.jar"/>
2322
<classpathentry kind="output" path="bin"/>
2423
</classpath>

app/src/processing/app/Commander.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,10 @@ public Commander(String[] args) {
244244
}
245245
}
246246

247-
247+
public void statusNotice(String message) {
248+
System.err.println(message);
249+
}
250+
248251
public void statusError(String message) {
249252
System.err.println(message);
250253
}

app/src/processing/app/debug/RunnerListener.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,6 @@ public interface RunnerListener {
2828
public void statusError(String message);
2929

3030
public void statusError(Exception exception);
31+
32+
public void statusNotice(String message);
3133
}

0 commit comments

Comments
 (0)