diff options
author | aclement <aclement> | 2008-09-16 23:07:11 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-09-16 23:07:11 +0000 |
commit | f6e3192f19abca9e89f3948276b8f6aca6815b24 (patch) | |
tree | 96fe1218bd0184193f4a1dac5f8562cae96ec7f9 | |
parent | bd232a2be79b99bce9037ff05514ef73238b9991 (diff) | |
download | aspectj-f6e3192f19abca9e89f3948276b8f6aca6815b24.tar.gz aspectj-f6e3192f19abca9e89f3948276b8f6aca6815b24.zip |
New method on the interface: null impl
-rw-r--r-- | ajde.core/testsrc/org/aspectj/ajde/core/TestOutputLocationManager.java | 4 |
1 files changed, 4 insertions, 0 deletions
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; + } } |