We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40dfd6c commit 3826d47Copy full SHA for 3826d47
src/main/java/org/jd/core/v1/model/javasyntax/type/GenericType.java
@@ -79,15 +79,7 @@ public void accept(TypeArgumentVisitor visitor) {
79
80
@Override
81
public boolean isTypeArgumentAssignableFrom(Map<String, BaseType> typeBounds, BaseTypeArgument typeArgument) {
82
- if (typeArgument.isGenericTypeArgument()) {
83
- return true;
84
- } else if (typeArgument instanceof Type) {
85
- return false;
86
- } else if (typeArgument.isWildcardTypeArgument()) {
87
88
- }
89
-
90
+ return equals(typeArgument);
91
}
92
93
0 commit comments