diff options
author | aclement <aclement> | 2009-03-23 02:29:56 +0000 |
---|---|---|
committer | aclement <aclement> | 2009-03-23 02:29:56 +0000 |
commit | 525a70ecf3e81ac0bb3c5a48c6ea1850ee2c0b59 (patch) | |
tree | 4767da564c8c4e5f60bc38d0c61435fce5f95fba /ajde.core | |
parent | acbe3c71ed27b17f5502e6c167703301fc898281 (diff) | |
download | aspectj-525a70ecf3e81ac0bb3c5a48c6ea1850ee2c0b59.tar.gz aspectj-525a70ecf3e81ac0bb3c5a48c6ea1850ee2c0b59.zip |
generalize report API to cover resources and outjar
Diffstat (limited to 'ajde.core')
-rw-r--r-- | ajde.core/testsrc/org/aspectj/ajde/core/TestOutputLocationManager.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ajde.core/testsrc/org/aspectj/ajde/core/TestOutputLocationManager.java b/ajde.core/testsrc/org/aspectj/ajde/core/TestOutputLocationManager.java index d6ed0e241..941a21212 100644 --- a/ajde.core/testsrc/org/aspectj/ajde/core/TestOutputLocationManager.java +++ b/ajde.core/testsrc/org/aspectj/ajde/core/TestOutputLocationManager.java @@ -79,10 +79,10 @@ public class TestOutputLocationManager implements IOutputLocationManager { return null; } - public void reportClassFileWrite(String outputfile) { + public void reportFileWrite(String outputfile, int filetype) { } - public void reportClassFileRemove(String outputfile) { + public void reportFileRemove(String outputfile, int filetype) { } } |