diff options
-rw-r--r-- | weaver/src/org/aspectj/weaver/JoinPointSignature.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/weaver/src/org/aspectj/weaver/JoinPointSignature.java b/weaver/src/org/aspectj/weaver/JoinPointSignature.java index b5fb8eb67..fc65c1133 100644 --- a/weaver/src/org/aspectj/weaver/JoinPointSignature.java +++ b/weaver/src/org/aspectj/weaver/JoinPointSignature.java @@ -15,6 +15,7 @@ import java.io.DataOutputStream; import java.io.IOException; import java.util.Collection; import java.util.Iterator; +import java.util.List; import org.aspectj.bridge.ISourceLocation; import org.aspectj.weaver.AjAttribute.EffectiveSignatureAttribute; @@ -201,6 +202,10 @@ public class JoinPointSignature implements ResolvedMember { public ResolvedMemberImpl parameterizedWith(UnresolvedType[] typeParameters, ResolvedType newDeclaringType, boolean isParameterized) { return realMember.parameterizedWith(typeParameters, newDeclaringType, isParameterized); } + + public ResolvedMemberImpl parameterizedWith(UnresolvedType[] typeParameters, ResolvedType newDeclaringType, boolean isParameterized,List aliases) { + return realMember.parameterizedWith(typeParameters, newDeclaringType, isParameterized,aliases); + } public void setTypeVariables(TypeVariable[] types) { realMember.setTypeVariables(types); |