From: aclement Date: Mon, 15 Jan 2007 08:45:13 +0000 (+0000) Subject: 148190#32 X-Git-Tag: Root_extensions~26 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ade1fbdd496c239d07ae7334de16a8c2422e5062;p=aspectj.git 148190#32 --- diff --git a/ajde/testdata/JarManifestTest/.cvsignore b/ajde/testdata/JarManifestTest/.cvsignore deleted file mode 100644 index af386ccf6..000000000 --- a/ajde/testdata/JarManifestTest/.cvsignore +++ /dev/null @@ -1,2 +0,0 @@ -bin -*.ajsym diff --git a/ajde/testdata/JarManifestTest/noweave.lst b/ajde/testdata/JarManifestTest/noweave.lst deleted file mode 100644 index 4bc0c84b9..000000000 --- a/ajde/testdata/JarManifestTest/noweave.lst +++ /dev/null @@ -1,3 +0,0 @@ -src/Main.java -src/Logging.aj --XterminateAfterCompilation \ No newline at end of file diff --git a/ajde/testdata/JarManifestTest/src/Logging.aj b/ajde/testdata/JarManifestTest/src/Logging.aj deleted file mode 100644 index 3ef6ef0e8..000000000 --- a/ajde/testdata/JarManifestTest/src/Logging.aj +++ /dev/null @@ -1,13 +0,0 @@ -public aspect Logging { - - pointcut methods () : - execution(* *..*(..)) && !within(Logging); - - before () : methods () { - System.err.println("> " + thisJoinPoint.getSignature().toLongString()); - } - - after () : methods () { - System.err.println("< " + thisJoinPoint.getSignature().toLongString()); - } -} diff --git a/ajde/testdata/JarManifestTest/src/Main.java b/ajde/testdata/JarManifestTest/src/Main.java deleted file mode 100644 index 94369dd8e..000000000 --- a/ajde/testdata/JarManifestTest/src/Main.java +++ /dev/null @@ -1,25 +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 void println () { - System.out.println("Main."); - } - - public static void main(String[] args) throws IOException { - new Main().println(); - } -} diff --git a/ajde/testdata/JarManifestTest/weave.lst b/ajde/testdata/JarManifestTest/weave.lst deleted file mode 100644 index 0ad7a8a9a..000000000 --- a/ajde/testdata/JarManifestTest/weave.lst +++ /dev/null @@ -1,2 +0,0 @@ -src/Main.java -src/Logging.aj