diff options
Diffstat (limited to 'ajde')
-rw-r--r-- | ajde/testdata/examples/inheritance/.cvsignore | 1 | ||||
-rw-r--r-- | ajde/testdata/examples/inheritance/A.java | 22 | ||||
-rw-r--r-- | ajde/testdata/examples/inheritance/inheritance.lst | 1 |
3 files changed, 0 insertions, 24 deletions
diff --git a/ajde/testdata/examples/inheritance/.cvsignore b/ajde/testdata/examples/inheritance/.cvsignore deleted file mode 100644 index a5f90a68e..000000000 --- a/ajde/testdata/examples/inheritance/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -inheritance.ajsym diff --git a/ajde/testdata/examples/inheritance/A.java b/ajde/testdata/examples/inheritance/A.java deleted file mode 100644 index 899b409f0..000000000 --- a/ajde/testdata/examples/inheritance/A.java +++ /dev/null @@ -1,22 +0,0 @@ - -package inheritance; - -public abstract class A { - - public abstract void bar(); - - public void foo() { } - - public String toString() { - // mumble - - return ""; - } -} - -class B extends A { - - public void bar() { } - - public void foo() { } -} diff --git a/ajde/testdata/examples/inheritance/inheritance.lst b/ajde/testdata/examples/inheritance/inheritance.lst deleted file mode 100644 index cf4be8246..000000000 --- a/ajde/testdata/examples/inheritance/inheritance.lst +++ /dev/null @@ -1 +0,0 @@ -A.java |