aboutsummaryrefslogtreecommitdiffstats
path: root/tests/java5/generics
diff options
context:
space:
mode:
authoracolyer <acolyer>2005-11-24 11:05:03 +0000
committeracolyer <acolyer>2005-11-24 11:05:03 +0000
commitf139242382c8ba330d13a93bd75bbef5c06824e3 (patch)
treed7183d28b56a96d2cd5084518736d800cb8a657e /tests/java5/generics
parent3b110f784434ac9309dc0e37682335f751af7cc3 (diff)
downloadaspectj-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.aj2
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) {}