diff options
author | jhugunin <jhugunin> | 2002-12-30 19:53:39 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2002-12-30 19:53:39 +0000 |
commit | 23e449e656bb9701a586b6b71a2607365edef50e (patch) | |
tree | ab7a9be44aaba5fd9399cea49b05b54ab6971adb /tests/new | |
parent | 4b069263be1a381592bb521eb0211e84f37dbcfe (diff) | |
download | aspectj-23e449e656bb9701a586b6b71a2607365edef50e.tar.gz aspectj-23e449e656bb9701a586b6b71a2607365edef50e.zip |
needed a !within(A)
Diffstat (limited to 'tests/new')
-rw-r--r-- | tests/new/AfterReturningConstructor.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/new/AfterReturningConstructor.java b/tests/new/AfterReturningConstructor.java index 8e70b0eca..e0fad5e0e 100644 --- a/tests/new/AfterReturningConstructor.java +++ b/tests/new/AfterReturningConstructor.java @@ -47,7 +47,7 @@ class U { aspect A { /** must pick out both interface and implementor constructor execution */ - pointcut pc(): execution(new(..)); + pointcut pc(): execution(new(..)) && !within(A); before(): pc() { U.e(U.before + thisJoinPoint); |