aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ajde/testdata/InpathTest/.cvsignore3
-rw-r--r--ajde/testdata/InpathTest/build.lst1
-rw-r--r--ajde/testdata/InpathTest/build2.lst1
-rw-r--r--ajde/testdata/InpathTest/indir1/META-INF/MANIFEST.MF3
-rw-r--r--ajde/testdata/InpathTest/indir1/META-INF/test.xml4
-rw-r--r--ajde/testdata/InpathTest/indir1/test/test.props1
-rw-r--r--ajde/testdata/InpathTest/indir2/example/HelloWorld.java12
-rw-r--r--ajde/testdata/InpathTest/src1/Main.java22
-rw-r--r--ajde/testdata/InpathTest/src2/Aspect.java7
9 files changed, 0 insertions, 54 deletions
diff --git a/ajde/testdata/InpathTest/.cvsignore b/ajde/testdata/InpathTest/.cvsignore
deleted file mode 100644
index 39b6b088c..000000000
--- a/ajde/testdata/InpathTest/.cvsignore
+++ /dev/null
@@ -1,3 +0,0 @@
-bin
-build.ajsym
-build2.ajsym
diff --git a/ajde/testdata/InpathTest/build.lst b/ajde/testdata/InpathTest/build.lst
deleted file mode 100644
index ec1f031f5..000000000
--- a/ajde/testdata/InpathTest/build.lst
+++ /dev/null
@@ -1 +0,0 @@
-src1/Main.java
diff --git a/ajde/testdata/InpathTest/build2.lst b/ajde/testdata/InpathTest/build2.lst
deleted file mode 100644
index 263b509b2..000000000
--- a/ajde/testdata/InpathTest/build2.lst
+++ /dev/null
@@ -1 +0,0 @@
-src2/Aspect.java
diff --git a/ajde/testdata/InpathTest/indir1/META-INF/MANIFEST.MF b/ajde/testdata/InpathTest/indir1/META-INF/MANIFEST.MF
deleted file mode 100644
index fb5efeb68..000000000
--- a/ajde/testdata/InpathTest/indir1/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,3 +0,0 @@
-Manifest-Version: 1.0
-Created-By: 1.3.1_04 (Sun Microsystems Inc.)
-
diff --git a/ajde/testdata/InpathTest/indir1/META-INF/test.xml b/ajde/testdata/InpathTest/indir1/META-INF/test.xml
deleted file mode 100644
index f9efa1f1f..000000000
--- a/ajde/testdata/InpathTest/indir1/META-INF/test.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" ?>
-<jar name="input1.jar">
-</jar>
-
diff --git a/ajde/testdata/InpathTest/indir1/test/test.props b/ajde/testdata/InpathTest/indir1/test/test.props
deleted file mode 100644
index 8462a7ab6..000000000
--- a/ajde/testdata/InpathTest/indir1/test/test.props
+++ /dev/null
@@ -1 +0,0 @@
-test=test2 \ No newline at end of file
diff --git a/ajde/testdata/InpathTest/indir2/example/HelloWorld.java b/ajde/testdata/InpathTest/indir2/example/HelloWorld.java
deleted file mode 100644
index 476abc7ee..000000000
--- a/ajde/testdata/InpathTest/indir2/example/HelloWorld.java
+++ /dev/null
@@ -1,12 +0,0 @@
-package example;
-
-public class HelloWorld {
-
- public static void say(String msg) {
- System.err.println(msg);
- }
-
- public static void main(String []argv) {
- say("hello world");
- }
-}
diff --git a/ajde/testdata/InpathTest/src1/Main.java b/ajde/testdata/InpathTest/src1/Main.java
deleted file mode 100644
index 417fc6809..000000000
--- a/ajde/testdata/InpathTest/src1/Main.java
+++ /dev/null
@@ -1,22 +0,0 @@
-import java.io.IOException;
-
-/*
- * Created on 30-Jul-03
- *
- * To change this generated comment go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
-
-/**
- * @author websterm
- *
- * To change this generated comment go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
-public class Main {
-
- public static void main(String[] args) throws IOException {
- String propsName = (args.length > 0)? args[0] : "test.props";
- new test.TestProperties().load(propsName);
- }
-}
diff --git a/ajde/testdata/InpathTest/src2/Aspect.java b/ajde/testdata/InpathTest/src2/Aspect.java
deleted file mode 100644
index c70994870..000000000
--- a/ajde/testdata/InpathTest/src2/Aspect.java
+++ /dev/null
@@ -1,7 +0,0 @@
-public aspect Aspect {
- pointcut sayCalls(): call(* say(..));
-
- before(): sayCalls() {
- System.err.println("Before say()");
- }
-}