diff options
author | aclement <aclement> | 2008-08-07 18:19:23 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-08-07 18:19:23 +0000 |
commit | acdb8c8a8a6fe0ddb159f26d709f7a76114955e9 (patch) | |
tree | 1bf7cee1961e0577378293504fa18fac7718fb87 /weaver | |
parent | 277941b7a9536b0c210d468177e62306f6d4f3a7 (diff) | |
download | aspectj-acdb8c8a8a6fe0ddb159f26d709f7a76114955e9.tar.gz aspectj-acdb8c8a8a6fe0ddb159f26d709f7a76114955e9.zip |
242797
Diffstat (limited to 'weaver')
-rw-r--r-- | weaver/src/org/aspectj/weaver/ReferenceType.java | 2 |
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?? |