From c693350b28918e4c0ef93820188e230fc8a73d6e Mon Sep 17 00:00:00 2001 From: aclement Date: Thu, 12 Feb 2009 16:40:40 +0000 Subject: [PATCH] 124460: aop.xml used for compilation: AJDT interface support --- testing/src/org/aspectj/testing/ajde/CompileCommand.java | 5 +++++ 1 file changed, 5 insertions(+) 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; } -- 2.39.5