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