diff options
author | aclement <aclement> | 2008-09-16 23:05:07 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-09-16 23:05:07 +0000 |
commit | bd232a2be79b99bce9037ff05514ef73238b9991 (patch) | |
tree | 29fe28682e082db6d3e30dbc521f9c772fee102c /ajde | |
parent | 7d2b812237d040fadcb94f270d97d5ba36b9eee6 (diff) | |
download | aspectj-bd232a2be79b99bce9037ff05514ef73238b9991.tar.gz aspectj-bd232a2be79b99bce9037ff05514ef73238b9991.zip |
New method on the interface: null impl
Diffstat (limited to 'ajde')
-rw-r--r-- | ajde/testsrc/org/aspectj/ajde/ui/utils/TestOutputLocationManager.java | 4 |
1 files changed, 4 insertions, 0 deletions
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; + } } |