From: jhugunin Date: Mon, 30 Dec 2002 19:53:39 +0000 (+0000) Subject: needed a !within(A) X-Git-Tag: V_1_1_b5~207 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=23e449e656bb9701a586b6b71a2607365edef50e;p=aspectj.git needed a !within(A) --- 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);