From 623c6e50e12e49a9440c8f2c99354617f6a0f66e Mon Sep 17 00:00:00 2001 From: Svetlana Isakova Date: Fri, 9 Aug 2013 18:40:34 +0400 Subject: [PATCH] removed unused method --- .../lang/types/expressions/ExpressionTypingServices.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/compiler/frontend/src/org/jetbrains/jet/lang/types/expressions/ExpressionTypingServices.java b/compiler/frontend/src/org/jetbrains/jet/lang/types/expressions/ExpressionTypingServices.java index 7dfe175e9be..8f74e5a4bd0 100644 --- a/compiler/frontend/src/org/jetbrains/jet/lang/types/expressions/ExpressionTypingServices.java +++ b/compiler/frontend/src/org/jetbrains/jet/lang/types/expressions/ExpressionTypingServices.java @@ -144,12 +144,6 @@ public class ExpressionTypingServices { return getTypeInfo(scope, expression, expectedType, dataFlowInfo, trace).getType(); } - public JetTypeInfo getTypeInfoWithNamespaces(@NotNull JetExpression expression, @NotNull JetScope scope, @NotNull JetType expectedType, @NotNull DataFlowInfo dataFlowInfo, @NotNull BindingTrace trace) { - ExpressionTypingContext context = ExpressionTypingContext.newContext( - this, trace, scope, dataFlowInfo, expectedType, ExpressionPosition.LHS_OF_DOT); - return expressionTypingFacade.getTypeInfo(expression, context); - } - ///////////////////////////////////////////////////////// public void checkFunctionReturnType(@NotNull JetScope functionInnerScope, @NotNull JetDeclarationWithBody function, @NotNull FunctionDescriptor functionDescriptor, @NotNull DataFlowInfo dataFlowInfo, @Nullable JetType expectedReturnType, BindingTrace trace) {