From 4820dcea42b8379dc40ce157ca09d2740313309d Mon Sep 17 00:00:00 2001 From: aclement Date: Mon, 15 Jan 2007 08:45:27 +0000 Subject: [PATCH] 148190#32 --- ajde/testdata/BuildCancelling/.cvsignore | 1 - ajde/testdata/BuildCancelling/A1.aj | 9 --------- ajde/testdata/BuildCancelling/A2.aj | 9 --------- ajde/testdata/BuildCancelling/A3.aj | 9 --------- ajde/testdata/BuildCancelling/A4.aj | 9 --------- ajde/testdata/BuildCancelling/Cl1.java | 4 ---- ajde/testdata/BuildCancelling/Cl2.java | 4 ---- ajde/testdata/BuildCancelling/Cl3.java | 4 ---- ajde/testdata/BuildCancelling/EvenMoreCode.lst | 10 ---------- ajde/testdata/BuildCancelling/HW.java | 13 ------------- ajde/testdata/BuildCancelling/LoadsaCode.lst | 7 ------- 11 files changed, 79 deletions(-) delete mode 100644 ajde/testdata/BuildCancelling/.cvsignore delete mode 100644 ajde/testdata/BuildCancelling/A1.aj delete mode 100644 ajde/testdata/BuildCancelling/A2.aj delete mode 100644 ajde/testdata/BuildCancelling/A3.aj delete mode 100644 ajde/testdata/BuildCancelling/A4.aj delete mode 100644 ajde/testdata/BuildCancelling/Cl1.java delete mode 100644 ajde/testdata/BuildCancelling/Cl2.java delete mode 100644 ajde/testdata/BuildCancelling/Cl3.java delete mode 100644 ajde/testdata/BuildCancelling/EvenMoreCode.lst delete mode 100644 ajde/testdata/BuildCancelling/HW.java delete mode 100644 ajde/testdata/BuildCancelling/LoadsaCode.lst diff --git a/ajde/testdata/BuildCancelling/.cvsignore b/ajde/testdata/BuildCancelling/.cvsignore deleted file mode 100644 index ba077a403..000000000 --- a/ajde/testdata/BuildCancelling/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -bin diff --git a/ajde/testdata/BuildCancelling/A1.aj b/ajde/testdata/BuildCancelling/A1.aj deleted file mode 100644 index 1245cfff1..000000000 --- a/ajde/testdata/BuildCancelling/A1.aj +++ /dev/null @@ -1,9 +0,0 @@ - -public aspect A1 { - - pointcut m1(): execution(* main(..)); - - before(): m1() { - System.err.println("Before main runs"); - } -} \ No newline at end of file diff --git a/ajde/testdata/BuildCancelling/A2.aj b/ajde/testdata/BuildCancelling/A2.aj deleted file mode 100644 index 4a2ee8189..000000000 --- a/ajde/testdata/BuildCancelling/A2.aj +++ /dev/null @@ -1,9 +0,0 @@ - -public aspect A2 { - - pointcut m1(): execution(* main(..)); - - after(): m1() { - System.err.println("After main runs"); - } -} diff --git a/ajde/testdata/BuildCancelling/A3.aj b/ajde/testdata/BuildCancelling/A3.aj deleted file mode 100644 index d9f7a6888..000000000 --- a/ajde/testdata/BuildCancelling/A3.aj +++ /dev/null @@ -1,9 +0,0 @@ - -public aspect A3 { - - pointcut m1(): call(* *print*(..)); - - before(): m1() { - System.err.println("Calling print"); - } -} \ No newline at end of file diff --git a/ajde/testdata/BuildCancelling/A4.aj b/ajde/testdata/BuildCancelling/A4.aj deleted file mode 100644 index 5c475d4f2..000000000 --- a/ajde/testdata/BuildCancelling/A4.aj +++ /dev/null @@ -1,9 +0,0 @@ - -public aspect A4 { - - pointcut m1(): call(* *print*(..)); - - after(): m1() { - System.err.println("After call to print"); - } -} \ No newline at end of file diff --git a/ajde/testdata/BuildCancelling/Cl1.java b/ajde/testdata/BuildCancelling/Cl1.java deleted file mode 100644 index 7652142c6..000000000 --- a/ajde/testdata/BuildCancelling/Cl1.java +++ /dev/null @@ -1,4 +0,0 @@ -public class Cl1 { - public static void main(String[] args) { - } -} \ No newline at end of file diff --git a/ajde/testdata/BuildCancelling/Cl2.java b/ajde/testdata/BuildCancelling/Cl2.java deleted file mode 100644 index 8ba3e49ed..000000000 --- a/ajde/testdata/BuildCancelling/Cl2.java +++ /dev/null @@ -1,4 +0,0 @@ -public class Cl2 { - public static void main(String[] args) { - } -} \ No newline at end of file diff --git a/ajde/testdata/BuildCancelling/Cl3.java b/ajde/testdata/BuildCancelling/Cl3.java deleted file mode 100644 index 0b3b301df..000000000 --- a/ajde/testdata/BuildCancelling/Cl3.java +++ /dev/null @@ -1,4 +0,0 @@ -public class Cl3 { - public static void callPrint(String s) { - } -} \ No newline at end of file diff --git a/ajde/testdata/BuildCancelling/EvenMoreCode.lst b/ajde/testdata/BuildCancelling/EvenMoreCode.lst deleted file mode 100644 index cfd1cee3e..000000000 --- a/ajde/testdata/BuildCancelling/EvenMoreCode.lst +++ /dev/null @@ -1,10 +0,0 @@ -A1.aj -Cl1.java -A2.aj -Cl2.java -HW.java -A3.aj -Cl3.java -A4.aj --verbose --noExit diff --git a/ajde/testdata/BuildCancelling/HW.java b/ajde/testdata/BuildCancelling/HW.java deleted file mode 100644 index 3f8aaf831..000000000 --- a/ajde/testdata/BuildCancelling/HW.java +++ /dev/null @@ -1,13 +0,0 @@ - -public class HW { - public static void main(String[] args) { - callPrint("Hello"); - callPrint(" "); - callPrint("World"); - callPrint("\n"); - } - - public static void callPrint(String s) { - System.out.print(s); - } -} \ No newline at end of file diff --git a/ajde/testdata/BuildCancelling/LoadsaCode.lst b/ajde/testdata/BuildCancelling/LoadsaCode.lst deleted file mode 100644 index e313f343d..000000000 --- a/ajde/testdata/BuildCancelling/LoadsaCode.lst +++ /dev/null @@ -1,7 +0,0 @@ -A1.aj -A2.aj -HW.java -A3.aj -A4.aj --verbose --noExit -- 2.39.5