summaryrefslogtreecommitdiffstats
path: root/ajde
diff options
context:
space:
mode:
authormkersten <mkersten>2004-07-27 17:37:23 +0000
committermkersten <mkersten>2004-07-27 17:37:23 +0000
commit00882c7b5a504224c714175e5b70f1591ba0722f (patch)
treee9e212377dfdd191f607bcc3fe28a78044cf473a /ajde
parent5130e9dbb7ad9b806475355d8c2861eb57085656 (diff)
downloadaspectj-00882c7b5a504224c714175e5b70f1591ba0722f.tar.gz
aspectj-00882c7b5a504224c714175e5b70f1591ba0722f.zip
added no-arg constructor for convenience
Diffstat (limited to 'ajde')
-rw-r--r--ajde/testsrc/org/aspectj/ajde/AjdeTestCase.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/ajde/testsrc/org/aspectj/ajde/AjdeTestCase.java b/ajde/testsrc/org/aspectj/ajde/AjdeTestCase.java
index e672a701c..5f386a9dc 100644
--- a/ajde/testsrc/org/aspectj/ajde/AjdeTestCase.java
+++ b/ajde/testsrc/org/aspectj/ajde/AjdeTestCase.java
@@ -28,6 +28,10 @@ public class AjdeTestCase extends TestCase {
protected TestBuildListener testerBuildListener = new TestBuildListener();
protected String currTestDataPath;
+ public AjdeTestCase() {
+ super("");
+ }
+
public AjdeTestCase(String name) {
super(name);
}