diff options
author | aclement <aclement> | 2008-09-16 23:11:31 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-09-16 23:11:31 +0000 |
commit | 6a68dba947ddd49e8e8dea06e17f1412535c1cb8 (patch) | |
tree | 0d467ebc0684a6303ef47df5bd1d435dfa72b31f /tests | |
parent | cb0b7ddda7591d2344637cab1950496db973c2ef (diff) | |
download | aspectj-6a68dba947ddd49e8e8dea06e17f1412535c1cb8.tar.gz aspectj-6a68dba947ddd49e8e8dea06e17f1412535c1cb8.zip |
New method on the interface: null impl
Diffstat (limited to 'tests')
-rw-r--r-- | tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java b/tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java index b941a4290..9a3960b25 100644 --- a/tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java +++ b/tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java @@ -135,5 +135,9 @@ public class OutputLocationManagerTests extends AbstractMultiProjectIncrementalA public File getDefaultOutputLocation() { return new File(projectHome,"target/main/classes"); } + + public String getSourceFolderForFile(File sourceFile) { + return null; + } } } |