diff options
author | aclement <aclement> | 2008-09-16 23:11:15 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-09-16 23:11:15 +0000 |
commit | cb0b7ddda7591d2344637cab1950496db973c2ef (patch) | |
tree | 2259172d183dad5d8dfbe9c57c82163c275da670 /tests | |
parent | e30a0bfea42e6f3acba7cecdd5b0d3d8f32237a1 (diff) | |
download | aspectj-cb0b7ddda7591d2344637cab1950496db973c2ef.tar.gz aspectj-cb0b7ddda7591d2344637cab1950496db973c2ef.zip |
New method on the interface: null impl
Diffstat (limited to 'tests')
-rw-r--r-- | tests/src/org/aspectj/systemtest/incremental/tools/IncrementalOutputLocationManagerTests.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/src/org/aspectj/systemtest/incremental/tools/IncrementalOutputLocationManagerTests.java b/tests/src/org/aspectj/systemtest/incremental/tools/IncrementalOutputLocationManagerTests.java index a84c14e54..a6c4b567d 100644 --- a/tests/src/org/aspectj/systemtest/incremental/tools/IncrementalOutputLocationManagerTests.java +++ b/tests/src/org/aspectj/systemtest/incremental/tools/IncrementalOutputLocationManagerTests.java @@ -81,6 +81,10 @@ public class IncrementalOutputLocationManagerTests extends AbstractMultiProjectI public File getDefaultOutputLocation() { return new File(projectDir + File.separator + "bin"); } + + public String getSourceFolderForFile(File sourceFile) { + return null; + } } |