diff options
Diffstat (limited to 'ajde/testdata/JarManifestTest/src/Logging.aj')
-rw-r--r-- | ajde/testdata/JarManifestTest/src/Logging.aj | 13 |
1 files changed, 0 insertions, 13 deletions
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());
- }
-}
|