diff options
-rw-r--r-- | tests/src/org/aspectj/systemtest/incremental/tools/MultiProjTestOutputLocationManager.java | 5 | ||||
-rw-r--r-- | tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjTestOutputLocationManager.java b/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjTestOutputLocationManager.java index 3eafcfa60..2549bee63 100644 --- a/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjTestOutputLocationManager.java +++ b/tests/src/org/aspectj/systemtest/incremental/tools/MultiProjTestOutputLocationManager.java @@ -106,4 +106,9 @@ public class MultiProjTestOutputLocationManager implements IOutputLocationManage public void reportFileRemove(String outputfile, int filetype) { } + public int discoverChangesSince(File dir, long buildtime) { + // TODO Auto-generated method stub + return 0; + } + } diff --git a/tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java b/tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java index 3d10efaee..579faa430 100644 --- a/tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java +++ b/tests/src/org/aspectj/systemtest/incremental/tools/OutputLocationManagerTests.java @@ -143,6 +143,11 @@ public class OutputLocationManagerTests extends AbstractMultiProjectIncrementalA public String getSourceFolderForFile(File sourceFile) { return null; } + + public int discoverChangesSince(File dir, long buildtime) { + // TODO Auto-generated method stub + return 0; + } } public void reportFileWrite(String outputfile, int filetype) { |