From 96e89dadd94df6a1af23537e205944ed7d20e209 Mon Sep 17 00:00:00 2001 From: aclement Date: Tue, 18 Oct 2005 08:22:44 +0000 Subject: [PATCH] see pr112105: delegating impl required --- weaver/src/org/aspectj/weaver/JoinPointSignature.java | 5 +++++ 1 file changed, 5 insertions(+) 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); -- 2.39.5