From: aclement Date: Tue, 16 Sep 2008 23:09:55 +0000 (+0000) Subject: New method on the interface: null impl X-Git-Tag: V1_6_2~76 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=cdb2b55c431360dbb6ae38fecf6962e67050482d;p=aspectj.git New method on the interface: null impl --- diff --git a/testing/src/org/aspectj/testing/ajde/CompileCommand.java b/testing/src/org/aspectj/testing/ajde/CompileCommand.java index e2bef2531..848381743 100644 --- a/testing/src/org/aspectj/testing/ajde/CompileCommand.java +++ b/testing/src/org/aspectj/testing/ajde/CompileCommand.java @@ -384,4 +384,8 @@ class MyOutputLocationManager implements IOutputLocationManager { public String getUniqueIdentifier() { return null; } + + public String getSourceFolderForFile(File sourceFile) { + return null; + } }