diff options
author | acolyer <acolyer> | 2005-08-09 12:58:59 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-08-09 12:58:59 +0000 |
commit | 5b169a89bf518b4af16311dc4f95b71fbb4688f1 (patch) | |
tree | 6ba11a0fc69dd81cd28f33769387bbd7a9fa873f /weaver | |
parent | 52d810579f5055135ae8c4ce0a1f3a32a0612ba6 (diff) | |
download | aspectj-5b169a89bf518b4af16311dc4f95b71fbb4688f1.tar.gz aspectj-5b169a89bf518b4af16311dc4f95b71fbb4688f1.zip |
a type variable reference type should never be treated as a generic wildcard
Diffstat (limited to 'weaver')
-rw-r--r-- | weaver/src/org/aspectj/weaver/TypeVariableReferenceType.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/weaver/src/org/aspectj/weaver/TypeVariableReferenceType.java b/weaver/src/org/aspectj/weaver/TypeVariableReferenceType.java index 17941318a..356fc0f26 100644 --- a/weaver/src/org/aspectj/weaver/TypeVariableReferenceType.java +++ b/weaver/src/org/aspectj/weaver/TypeVariableReferenceType.java @@ -56,6 +56,9 @@ public class TypeVariableReferenceType extends BoundedReferenceType implements T return true; } + public boolean isGenericWildcard() { + return false; + } //public ResolvedType resolve(World world) { // return super.resolve(world); //} |