From: aclement Date: Thu, 12 Feb 2009 16:40:40 +0000 (+0000) Subject: 124460: aop.xml used for compilation: AJDT interface support X-Git-Tag: pre268419~106 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c693350b28918e4c0ef93820188e230fc8a73d6e;p=aspectj.git 124460: aop.xml used for compilation: AJDT interface support --- 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; }