From a03aa0cd334806004c0b8060058e40704da9adab Mon Sep 17 00:00:00 2001 From: aclement Date: Mon, 15 Jan 2007 08:45:20 +0000 Subject: [PATCH] 148190#32 --- ajde/testdata/InpathTest/.cvsignore | 3 --- ajde/testdata/InpathTest/build.lst | 1 - ajde/testdata/InpathTest/build2.lst | 1 - .../InpathTest/indir1/META-INF/MANIFEST.MF | 3 --- .../InpathTest/indir1/META-INF/test.xml | 4 ---- .../InpathTest/indir1/test/test.props | 1 - .../InpathTest/indir2/example/HelloWorld.java | 12 ---------- ajde/testdata/InpathTest/src1/Main.java | 22 ------------------- ajde/testdata/InpathTest/src2/Aspect.java | 7 ------ 9 files changed, 54 deletions(-) delete mode 100644 ajde/testdata/InpathTest/.cvsignore delete mode 100644 ajde/testdata/InpathTest/build.lst delete mode 100644 ajde/testdata/InpathTest/build2.lst delete mode 100644 ajde/testdata/InpathTest/indir1/META-INF/MANIFEST.MF delete mode 100644 ajde/testdata/InpathTest/indir1/META-INF/test.xml delete mode 100644 ajde/testdata/InpathTest/indir1/test/test.props delete mode 100644 ajde/testdata/InpathTest/indir2/example/HelloWorld.java delete mode 100644 ajde/testdata/InpathTest/src1/Main.java delete mode 100644 ajde/testdata/InpathTest/src2/Aspect.java 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 @@ - - - - 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()"); - } -} -- 2.39.5