aboutsummaryrefslogtreecommitdiffstats
path: root/weaver
diff options
context:
space:
mode:
authoraclement <aclement>2008-08-07 18:19:23 +0000
committeraclement <aclement>2008-08-07 18:19:23 +0000
commitacdb8c8a8a6fe0ddb159f26d709f7a76114955e9 (patch)
tree1bf7cee1961e0577378293504fa18fac7718fb87 /weaver
parent277941b7a9536b0c210d468177e62306f6d4f3a7 (diff)
downloadaspectj-acdb8c8a8a6fe0ddb159f26d709f7a76114955e9.tar.gz
aspectj-acdb8c8a8a6fe0ddb159f26d709f7a76114955e9.zip
242797
Diffstat (limited to 'weaver')
-rw-r--r--weaver/src/org/aspectj/weaver/ReferenceType.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/weaver/src/org/aspectj/weaver/ReferenceType.java b/weaver/src/org/aspectj/weaver/ReferenceType.java
index aab1bfa23..644c4528a 100644
--- a/weaver/src/org/aspectj/weaver/ReferenceType.java
+++ b/weaver/src/org/aspectj/weaver/ReferenceType.java
@@ -358,7 +358,7 @@ public class ReferenceType extends ResolvedType {
if (other.isTypeVariableReference()) {
TypeVariableReferenceType otherType = (TypeVariableReferenceType) other;
if (this instanceof TypeVariableReference) {
- return ((TypeVariableReference)this).getTypeVariable().canBeBoundTo(otherType.getTypeVariable().getFirstBound().resolve(world));// pr171952
+ return ((TypeVariableReference)this).getTypeVariable().resolve(world).canBeBoundTo(otherType.getTypeVariable().getFirstBound().resolve(world));// pr171952
// return ((TypeVariableReference)this).getTypeVariable()==otherType.getTypeVariable();
} else {
// FIXME asc should this say canBeBoundTo??