aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to 'testing')
-rw-r--r--testing/src/org/aspectj/testing/ajde/CompileCommand.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/testing/src/org/aspectj/testing/ajde/CompileCommand.java b/testing/src/org/aspectj/testing/ajde/CompileCommand.java
index 8be020895..246e3d216 100644
--- a/testing/src/org/aspectj/testing/ajde/CompileCommand.java
+++ b/testing/src/org/aspectj/testing/ajde/CompileCommand.java
@@ -114,8 +114,8 @@ public class CompileCommand implements ICommand {
TaskListManager taskListManager = myHandler;
BuildProgressMonitor buildProgressMonitor =
new DefaultBuildProgressMonitor(new Frame()) {
- public void finish() {
- super.finish();
+ public void finish(boolean b) {
+ super.finish(b);
setEndTime(System.currentTimeMillis());
}
};
@@ -280,6 +280,10 @@ class MyTaskListManager
hasWarning = true;
}
}
+ public void buildSuccessful(boolean wasFullBuild) {
+ // TODO Auto-generated method stub
+
+ }
}
class VoidInvocationHandler implements InvocationHandler {