Removed code which does not seem to be needed at all

This commit is contained in:
Valentin Kipyatkov
2014-11-18 21:38:46 +03:00
parent e0da6247af
commit 376e12b6f3
@@ -207,10 +207,6 @@ public class ExpressionTypingUtils {
for (JetType type : types) {
if (checkReceiverResolution(receiverArgument, type, callableDescriptor)) return true;
if (type.isNullable()) {
JetType notNullableType = TypeUtils.makeNotNullable(type);
if (checkReceiverResolution(receiverArgument, notNullableType, callableDescriptor)) return true;
}
}
return false;