From 23e449e656bb9701a586b6b71a2607365edef50e Mon Sep 17 00:00:00 2001 From: jhugunin Date: Mon, 30 Dec 2002 19:53:39 +0000 Subject: [PATCH] needed a !within(A) --- tests/new/AfterReturningConstructor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.5