Unused method removed

This commit is contained in:
Andrey Breslav
2013-09-06 12:45:35 +04:00
parent b62dffed93
commit 1c69617026
@@ -265,14 +265,6 @@ public class TypeResolver {
}
}
private List<JetType> resolveTypes(JetScope scope, List<JetTypeReference> argumentElements, BindingTrace trace, boolean checkBounds) {
List<JetType> arguments = new ArrayList<JetType>();
for (JetTypeReference argumentElement : argumentElements) {
arguments.add(resolveType(scope, argumentElement, trace, checkBounds));
}
return arguments;
}
@NotNull
private List<TypeProjection> resolveTypeProjections(
TypeResolutionContext c,