summaryrefslogtreecommitdiffstats
path: root/tests/bugs152
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs152')
-rw-r--r--tests/bugs152/pr145693/Event.java1
-rw-r--r--tests/bugs152/pr145693/Monitor.aj12
-rw-r--r--tests/bugs152/pr145693/Sample.java9
3 files changed, 0 insertions, 22 deletions
diff --git a/tests/bugs152/pr145693/Event.java b/tests/bugs152/pr145693/Event.java
deleted file mode 100644
index e2a8b628a..000000000
--- a/tests/bugs152/pr145693/Event.java
+++ /dev/null
@@ -1 +0,0 @@
-public class Event {}
diff --git a/tests/bugs152/pr145693/Monitor.aj b/tests/bugs152/pr145693/Monitor.aj
deleted file mode 100644
index 51b37855a..000000000
--- a/tests/bugs152/pr145693/Monitor.aj
+++ /dev/null
@@ -1,12 +0,0 @@
-public aspect Monitor {
- public pointcut handleEvent(Event event):
- execution(* handleEvent(Event, ..)) && args(event);
-
- public pointcut inHandleEvent(Event event): cflow(handleEvent(event));
-
- before(Event event):
- set(* currentView) &&
- inHandleEvent(event) {
- }
-
-}
diff --git a/tests/bugs152/pr145693/Sample.java b/tests/bugs152/pr145693/Sample.java
deleted file mode 100644
index 50f9cb334..000000000
--- a/tests/bugs152/pr145693/Sample.java
+++ /dev/null
@@ -1,9 +0,0 @@
-public class Sample {
-
- private static Object currentView;
-
- public static void main(String args[]) {
- currentView = "test";
- }
-
-}