diff options
author | aclement <aclement> | 2008-02-25 22:01:03 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-02-25 22:01:03 +0000 |
commit | acb02d9c33490ae835964d587c8262dd0aa33422 (patch) | |
tree | 6719b3c931a7108d93fbff2dda44187eef19098e | |
parent | fb08aa0765f0c212273ee57c6637ed93dc3b7a4e (diff) | |
download | aspectj-acb02d9c33490ae835964d587c8262dd0aa33422.tar.gz aspectj-acb02d9c33490ae835964d587c8262dd0aa33422.zip |
annoValMatch: implementation
-rw-r--r-- | weaver/src/org/aspectj/weaver/patterns/BindingAnnotationTypePattern.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weaver/src/org/aspectj/weaver/patterns/BindingAnnotationTypePattern.java b/weaver/src/org/aspectj/weaver/patterns/BindingAnnotationTypePattern.java index adecd08df..feff42b0d 100644 --- a/weaver/src/org/aspectj/weaver/patterns/BindingAnnotationTypePattern.java +++ b/weaver/src/org/aspectj/weaver/patterns/BindingAnnotationTypePattern.java @@ -33,7 +33,7 @@ public class BindingAnnotationTypePattern extends ExactAnnotationTypePattern imp * @param annotationType */ public BindingAnnotationTypePattern(UnresolvedType annotationType, int index) { - super(annotationType); + super(annotationType,null); this.formalIndex = index; } @@ -105,7 +105,7 @@ public class BindingAnnotationTypePattern extends ExactAnnotationTypePattern imp public AnnotationTypePattern remapAdviceFormals(IntMap bindings) { if (!bindings.hasKey(formalIndex)) { - return new ExactAnnotationTypePattern(annotationType); + return new ExactAnnotationTypePattern(annotationType,null); } else { int newFormalIndex = bindings.get(formalIndex); return new BindingAnnotationTypePattern(annotationType, newFormalIndex); |