Polish "Improve resolution of generic type variables"

See gh-23418
This commit is contained in:
Stephane Nicoll
2022-09-26 13:07:43 +02:00
parent 124a76b1ad
commit b11e885e00
2 changed files with 2 additions and 6 deletions

View File

@@ -203,7 +203,6 @@ public final class GenericTypeResolver {
if (variableResolver == null) {
return ResolvableType.NONE;
}
resolvedType = variableResolver.resolveVariable(typeVariable);
if (resolvedType != null) {
return resolvedType;
@@ -223,7 +222,6 @@ public final class GenericTypeResolver {
return resolvedType;
}
}
return ResolvableType.NONE;
}