diff options
author | aclement <aclement> | 2008-09-02 23:23:59 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-09-02 23:23:59 +0000 |
commit | 42722c9843f42060ef892853fd5a9482072b351d (patch) | |
tree | cb2afa19d4b1b1b1e2ab17772393a58048f3b5cc /testing/src | |
parent | f12d9e2e4fc56dd7e464f590be9d8e05cc66d257 (diff) | |
download | aspectj-42722c9843f42060ef892853fd5a9482072b351d.tar.gz aspectj-42722c9843f42060ef892853fd5a9482072b351d.zip |
245566: final config interface change
Diffstat (limited to 'testing/src')
-rw-r--r-- | testing/src/org/aspectj/testing/ajde/CompileCommand.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/testing/src/org/aspectj/testing/ajde/CompileCommand.java b/testing/src/org/aspectj/testing/ajde/CompileCommand.java index 924051488..e2bef2531 100644 --- a/testing/src/org/aspectj/testing/ajde/CompileCommand.java +++ b/testing/src/org/aspectj/testing/ajde/CompileCommand.java @@ -356,6 +356,11 @@ class MyCompilerConfig implements ICompilerConfiguration { public int getConfigurationChanges() { return ICompilerConfiguration.EVERYTHING; } + + public List getClasspathElementsWithModifiedContents() { + return null; + } + } class MyOutputLocationManager implements IOutputLocationManager { @@ -379,5 +384,4 @@ class MyOutputLocationManager implements IOutputLocationManager { public String getUniqueIdentifier() { return null; } - } |