From: aclement Date: Tue, 16 Sep 2008 23:11:31 +0000 (+0000) Subject: New method on the interface: null impl X-Git-Tag: V1_6_2~73 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6a68dba947ddd49e8e8dea06e17f1412535c1cb8;p=aspectj.git New method on the interface: null impl --- 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; + } } }