aboutsummaryrefslogtreecommitdiffstats
path: root/ajde/testdata/BuildCancelling/A2.aj
diff options
context:
space:
mode:
Diffstat (limited to 'ajde/testdata/BuildCancelling/A2.aj')
-rw-r--r--ajde/testdata/BuildCancelling/A2.aj9
1 files changed, 0 insertions, 9 deletions
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");
- }
-}