Minor. Fixed method name.

This commit is contained in:
Evgeny Gerashchenko
2013-02-19 17:42:15 +04:00
parent 2c13b6b63d
commit 1a54e42eb7
2 changed files with 2 additions and 2 deletions
@@ -38,7 +38,7 @@ import java.util.List;
// This class contains heuristics for processing corner cases in propagation
class PropagationHeuristics {
// Checks for case when method returning Super[] is overridden with method returning Sub[]
static void checkArrayInReturnTypeType(
static void checkArrayInReturnType(
@NotNull SignaturesPropagationData data,
@NotNull JetType type,
@NotNull List<SignaturesPropagationData.TypeAndVariance> typesFromSuper
@@ -328,7 +328,7 @@ public class SignaturesPropagationData {
resultArguments,
resultScope);
PropagationHeuristics.checkArrayInReturnTypeType(this, type, typesFromSuper);
PropagationHeuristics.checkArrayInReturnType(this, type, typesFromSuper);
return type;
}