diff options
author | aclement <aclement> | 2008-08-26 21:17:01 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-08-26 21:17:01 +0000 |
commit | 0044cad68439f7c41d8ae0883985a557f1fe7e8c (patch) | |
tree | 7944ec9fedc5e7fe53ec91b28d8d5f068a5aedf0 /ajde | |
parent | b7ab7a972ee267c14b7dcfae39ce9b02d4c5143c (diff) | |
download | aspectj-0044cad68439f7c41d8ae0883985a557f1fe7e8c.tar.gz aspectj-0044cad68439f7c41d8ae0883985a557f1fe7e8c.zip |
implement new ICompilerConfiguration method
Diffstat (limited to 'ajde')
-rw-r--r-- | ajde/testsrc/org/aspectj/ajde/ui/utils/TestCompilerConfiguration.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ajde/testsrc/org/aspectj/ajde/ui/utils/TestCompilerConfiguration.java b/ajde/testsrc/org/aspectj/ajde/ui/utils/TestCompilerConfiguration.java index 85e14fc5b..74c041165 100644 --- a/ajde/testsrc/org/aspectj/ajde/ui/utils/TestCompilerConfiguration.java +++ b/ajde/testsrc/org/aspectj/ajde/ui/utils/TestCompilerConfiguration.java @@ -98,6 +98,10 @@ public class TestCompilerConfiguration implements ICompilerConfiguration { return projectSourceFiles; } + public List getProjectSourceFilesChanged() { + return null; + } + public Map getSourcePathResources() { if (sourcePathResources == null) { sourcePathResources = new HashMap(); |