diff options
author | jhugunin <jhugunin> | 2002-12-19 23:03:54 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2002-12-19 23:03:54 +0000 |
commit | b684b97b9c0aa504fb6b143852e359de02d11002 (patch) | |
tree | e3eb2be1d11a0149f7ade87b6da56264e8ceb16b /tests/new | |
parent | c3002200cae795108f88fd5f7949dfa6f31a1616 (diff) | |
download | aspectj-b684b97b9c0aa504fb6b143852e359de02d11002.tar.gz aspectj-b684b97b9c0aa504fb6b143852e359de02d11002.zip |
explicitly excluding new preinitialization join points
Diffstat (limited to 'tests/new')
-rw-r--r-- | tests/new/CflowCycles.java | 2 |
1 files changed, 1 insertions, 1 deletions
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"); |