From b684b97b9c0aa504fb6b143852e359de02d11002 Mon Sep 17 00:00:00 2001 From: jhugunin Date: Thu, 19 Dec 2002 23:03:54 +0000 Subject: [PATCH] explicitly excluding new preinitialization join points --- tests/new/CflowCycles.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/new/CflowCycles.java b/tests/new/CflowCycles.java index 5b48bf76f..3bcabe612 100644 --- a/tests/new/CflowCycles.java +++ b/tests/new/CflowCycles.java @@ -17,7 +17,7 @@ class Target { aspect A1 { pointcut TargetRunFlow () // ok if no cflow: within(Target) && execution(* *(..)) && !within(A1+); - : !within(A1+) //cflow(within(Target) && execution(* *(..))) && !within(A1+) + : !within(A1+) && !preinitialization(new(..)) //cflow(within(Target) && execution(* *(..))) && !within(A1+) ; Object around () : TargetRunFlow() { Tester.event("target A1"); -- 2.39.5