diff options
author | aclement <aclement> | 2008-09-16 23:09:55 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-09-16 23:09:55 +0000 |
commit | cdb2b55c431360dbb6ae38fecf6962e67050482d (patch) | |
tree | 8def4cf75d6f2f0a862d3fa1045eec099db4dff5 /testing/src | |
parent | c84daa305f559019bced940684d9cfbf22812180 (diff) | |
download | aspectj-cdb2b55c431360dbb6ae38fecf6962e67050482d.tar.gz aspectj-cdb2b55c431360dbb6ae38fecf6962e67050482d.zip |
New method on the interface: null impl
Diffstat (limited to 'testing/src')
-rw-r--r-- | testing/src/org/aspectj/testing/ajde/CompileCommand.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testing/src/org/aspectj/testing/ajde/CompileCommand.java b/testing/src/org/aspectj/testing/ajde/CompileCommand.java index e2bef2531..848381743 100644 --- a/testing/src/org/aspectj/testing/ajde/CompileCommand.java +++ b/testing/src/org/aspectj/testing/ajde/CompileCommand.java @@ -384,4 +384,8 @@ class MyOutputLocationManager implements IOutputLocationManager { public String getUniqueIdentifier() { return null; } + + public String getSourceFolderForFile(File sourceFile) { + return null; + } } |