aboutsummaryrefslogtreecommitdiffstats
path: root/ajde/testdata/bug-36071a/src/aspects/Logging.java
diff options
context:
space:
mode:
Diffstat (limited to 'ajde/testdata/bug-36071a/src/aspects/Logging.java')
-rw-r--r--ajde/testdata/bug-36071a/src/aspects/Logging.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/ajde/testdata/bug-36071a/src/aspects/Logging.java b/ajde/testdata/bug-36071a/src/aspects/Logging.java
deleted file mode 100644
index 2e8ba485a..000000000
--- a/ajde/testdata/bug-36071a/src/aspects/Logging.java
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Created on 30-Jul-03
- *
- * To change this generated comment go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
-package aspects;
-
-/**
- * @author websterm
- *
- * To change this generated comment go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
-public aspect Logging {
-
- pointcut methods () :
- execution(* *..*(..)) && !within(Logging);
-
- before () : methods () {
- System.err.println("> " + thisJoinPoint.getSignature().toLongString());
- }
-
- after () : methods () {
- System.err.println("< " + thisJoinPoint.getSignature().toLongString());
- }
-}