From: aclement Date: Tue, 16 Sep 2008 23:07:11 +0000 (+0000) Subject: New method on the interface: null impl X-Git-Tag: V1_6_2~78 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f6e3192f19abca9e89f3948276b8f6aca6815b24;p=aspectj.git New method on the interface: null impl --- diff --git a/ajde.core/testsrc/org/aspectj/ajde/core/TestOutputLocationManager.java b/ajde.core/testsrc/org/aspectj/ajde/core/TestOutputLocationManager.java index 233c4239f..7812017ad 100644 --- a/ajde.core/testsrc/org/aspectj/ajde/core/TestOutputLocationManager.java +++ b/ajde.core/testsrc/org/aspectj/ajde/core/TestOutputLocationManager.java @@ -76,6 +76,10 @@ public class TestOutputLocationManager implements IOutputLocationManager { resourceOutputLoc = new File(testProjectOutputPath); } } + + public String getSourceFolderForFile(File sourceFile) { + return null; + } }