aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to 'testing')
-rw-r--r--testing/src/org/aspectj/testing/ajde/CompileCommand.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/testing/src/org/aspectj/testing/ajde/CompileCommand.java b/testing/src/org/aspectj/testing/ajde/CompileCommand.java
index 06c5ae25b..70d774f48 100644
--- a/testing/src/org/aspectj/testing/ajde/CompileCommand.java
+++ b/testing/src/org/aspectj/testing/ajde/CompileCommand.java
@@ -21,6 +21,7 @@ import java.io.PrintStream;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
+import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Set;
@@ -319,6 +320,10 @@ class MyCompilerConfig implements ICompilerConfiguration {
return JavaOptions.getDefaultJavaOptions();
}
+ public List getProjectXmlConfigFiles() {
+ return Collections.EMPTY_LIST;
+ }
+
public String getOutJar() {
return outJar;
}