]> source.dussan.org Git - aspectj.git/commitdiff
259279: test and fix: bridge pipeline
authoraclement <aclement>
Thu, 18 Dec 2008 18:01:16 +0000 (18:01 +0000)
committeraclement <aclement>
Thu, 18 Dec 2008 18:01:16 +0000 (18:01 +0000)
org.aspectj.matcher/src/org/aspectj/weaver/ResolvedMemberImpl.java

index 2bdd416975585f21641ea6701ef3a9ed9d695e28..6bb2289ade0f2b59209d042c56a5c0c93e9ea13b 100644 (file)
@@ -975,7 +975,7 @@ public class ResolvedMemberImpl extends MemberImpl implements IHasPosition, Anno
                        UnresolvedType thisParameter = myParameterTypes[i];
                        if (thisParameter.isTypeVariableReference()) {
                                TypeVariableReferenceType typeVariableRT = (TypeVariableReferenceType) thisParameter;
-                               sig.append(typeVariableRT.getUpperBound().getSignature());
+                               sig.append(typeVariableRT.getFirstBound().getSignature());
                        } else {
                                sig.append(thisParameter.getErasureSignature());
                        }