summaryrefslogtreecommitdiffstats
path: root/tests/new/CflowCycles.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/new/CflowCycles.java')
-rw-r--r--tests/new/CflowCycles.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/new/CflowCycles.java b/tests/new/CflowCycles.java
index 3bcabe612..0eeae1195 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+) && !preinitialization(new(..)) //cflow(within(Target) && execution(* *(..))) && !within(A1+)
+ : !within(A1+) && !preinitialization(new(..)) && !initialization(new(..))//cflow(within(Target) && execution(* *(..))) && !within(A1+)
;
Object around () : TargetRunFlow() {
Tester.event("target A1");