diff options
author | acolyer <acolyer> | 2005-11-24 11:05:03 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-11-24 11:05:03 +0000 |
commit | f139242382c8ba330d13a93bd75bbef5c06824e3 (patch) | |
tree | d7183d28b56a96d2cd5084518736d800cb8a657e /tests/java5/generics | |
parent | 3b110f784434ac9309dc0e37682335f751af7cc3 (diff) | |
download | aspectj-f139242382c8ba330d13a93bd75bbef5c06824e3.tar.gz aspectj-f139242382c8ba330d13a93bd75bbef5c06824e3.zip |
fix for parameterizing reference pointcuts with bindings
Diffstat (limited to 'tests/java5/generics')
-rw-r--r-- | tests/java5/generics/genericaspects/GenericAspectY.aj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/java5/generics/genericaspects/GenericAspectY.aj b/tests/java5/generics/genericaspects/GenericAspectY.aj index b677c3f10..c863fcf41 100644 --- a/tests/java5/generics/genericaspects/GenericAspectY.aj +++ b/tests/java5/generics/genericaspects/GenericAspectY.aj @@ -98,7 +98,7 @@ import org.aspectj.lang.annotation.*; aspect GenericAspectX extends ParentChildRelationship<Top,Bottom> { // Advice to trigger weave infos - before(Top p): ParentChildRelationship.addingChildSimple(p) {} + before(Top p): /*ParentChildRelationship.*/addingChildSimple(p) {} // before(Top p,Bottom c): ParentChildRelationship.addingChild(p,c) {} // before(Top p,Bottom c): ParentChildRelationship.removingChild(p,c) {} |