From 1e7682afc08e927f718e6c7b8708fafcf42d75fd Mon Sep 17 00:00:00 2001 From: Mikhail Zarechenskiy Date: Thu, 19 Apr 2018 18:17:25 +0300 Subject: [PATCH] Minor, rename property according to the style --- .../jetbrains/kotlin/resolve/calls/tower/PSICallResolver.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/frontend/src/org/jetbrains/kotlin/resolve/calls/tower/PSICallResolver.kt b/compiler/frontend/src/org/jetbrains/kotlin/resolve/calls/tower/PSICallResolver.kt index 13834750dd9..c2d339a3270 100644 --- a/compiler/frontend/src/org/jetbrains/kotlin/resolve/calls/tower/PSICallResolver.kt +++ b/compiler/frontend/src/org/jetbrains/kotlin/resolve/calls/tower/PSICallResolver.kt @@ -62,7 +62,7 @@ class PSICallResolver( private val constantExpressionEvaluator: ConstantExpressionEvaluator, private val dataFlowValueFactory: DataFlowValueFactory ) { - private val GIVEN_CANDIDATES_NAME = Name.special("") + private val givenCandidatesName = Name.special("") val defaultResolutionKinds = setOf( NewResolutionOldInference.ResolutionKind.Function, @@ -110,7 +110,7 @@ class PSICallResolver( val dispatchReceiver = resolutionCandidates.firstNotNullResult { it.dispatchReceiver } val kotlinCall = - toKotlinCall(context, KotlinCallKind.FUNCTION, context.call, GIVEN_CANDIDATES_NAME, tracingStrategy, dispatchReceiver) + toKotlinCall(context, KotlinCallKind.FUNCTION, context.call, givenCandidatesName, tracingStrategy, dispatchReceiver) val scopeTower = ASTScopeTower(context) val resolutionCallbacks = createResolutionCallbacks(context)