]> source.dussan.org Git - aspectj.git/commitdiff
148190#32
authoraclement <aclement>
Mon, 15 Jan 2007 08:45:20 +0000 (08:45 +0000)
committeraclement <aclement>
Mon, 15 Jan 2007 08:45:20 +0000 (08:45 +0000)
ajde/testdata/InpathTest/.cvsignore [deleted file]
ajde/testdata/InpathTest/build.lst [deleted file]
ajde/testdata/InpathTest/build2.lst [deleted file]
ajde/testdata/InpathTest/indir1/META-INF/MANIFEST.MF [deleted file]
ajde/testdata/InpathTest/indir1/META-INF/test.xml [deleted file]
ajde/testdata/InpathTest/indir1/test/test.props [deleted file]
ajde/testdata/InpathTest/indir2/example/HelloWorld.java [deleted file]
ajde/testdata/InpathTest/src1/Main.java [deleted file]
ajde/testdata/InpathTest/src2/Aspect.java [deleted file]

diff --git a/ajde/testdata/InpathTest/.cvsignore b/ajde/testdata/InpathTest/.cvsignore
deleted file mode 100644 (file)
index 39b6b08..0000000
+++ /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 (file)
index ec1f031..0000000
+++ /dev/null
@@ -1 +0,0 @@
-src1/Main.java\r
diff --git a/ajde/testdata/InpathTest/build2.lst b/ajde/testdata/InpathTest/build2.lst
deleted file mode 100644 (file)
index 263b509..0000000
+++ /dev/null
@@ -1 +0,0 @@
-src2/Aspect.java\r
diff --git a/ajde/testdata/InpathTest/indir1/META-INF/MANIFEST.MF b/ajde/testdata/InpathTest/indir1/META-INF/MANIFEST.MF
deleted file mode 100644 (file)
index fb5efeb..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-Manifest-Version: 1.0\r
-Created-By: 1.3.1_04 (Sun Microsystems Inc.)\r
-\r
diff --git a/ajde/testdata/InpathTest/indir1/META-INF/test.xml b/ajde/testdata/InpathTest/indir1/META-INF/test.xml
deleted file mode 100644 (file)
index f9efa1f..0000000
+++ /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 (file)
index 8462a7a..0000000
+++ /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 (file)
index 476abc7..0000000
+++ /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 (file)
index 417fc68..0000000
+++ /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 (file)
index c709948..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-public aspect Aspect {
-  pointcut sayCalls(): call(* say(..));
-
-  before(): sayCalls() {
-    System.err.println("Before say()");
-  }
-}