From: aclement Date: Tue, 16 Sep 2008 23:04:56 +0000 (+0000) Subject: New method on the interface: null impl X-Git-Tag: V1_6_2~80 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7d2b812237d040fadcb94f270d97d5ba36b9eee6;p=aspectj.git New method on the interface: null impl --- diff --git a/ajbrowser/src/org/aspectj/tools/ajbrowser/core/BrowserOutputLocationManager.java b/ajbrowser/src/org/aspectj/tools/ajbrowser/core/BrowserOutputLocationManager.java index 078715dd4..f1acd6d97 100644 --- a/ajbrowser/src/org/aspectj/tools/ajbrowser/core/BrowserOutputLocationManager.java +++ b/ajbrowser/src/org/aspectj/tools/ajbrowser/core/BrowserOutputLocationManager.java @@ -57,4 +57,8 @@ public class BrowserOutputLocationManager implements IOutputLocationManager { return new File(getCommonOutputDir()); } + public String getSourceFolderForFile(File sourceFile) { + return null; + } + }