From 1ae4278cfd8cb5eb598166c31b7abd988d2451e3 Mon Sep 17 00:00:00 2001 From: Dmitry Petrov Date: Wed, 7 Jun 2017 16:33:51 +0300 Subject: [PATCH] Minor: fix formatting --- .../calls/inference/model/NewConstraintSystemImpl.kt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/compiler/resolution/src/org/jetbrains/kotlin/resolve/calls/inference/model/NewConstraintSystemImpl.kt b/compiler/resolution/src/org/jetbrains/kotlin/resolve/calls/inference/model/NewConstraintSystemImpl.kt index 6795e36147d..a8714464ad0 100644 --- a/compiler/resolution/src/org/jetbrains/kotlin/resolve/calls/inference/model/NewConstraintSystemImpl.kt +++ b/compiler/resolution/src/org/jetbrains/kotlin/resolve/calls/inference/model/NewConstraintSystemImpl.kt @@ -162,8 +162,11 @@ class NewConstraintSystemImpl(val constraintInjector: ConstraintInjector, val re val fixedVariables = LinkedHashMap() for (variableWithConstrains in storage.notFixedTypeVariables.values) { - val resultType = resultTypeResolver.findResultIfThereIsEqualsConstraint(apply { checkState(State.BUILDING) }, variableWithConstrains, - allowedFixToNotProperType = false) + val resultType = resultTypeResolver.findResultIfThereIsEqualsConstraint( + apply { checkState(State.BUILDING) }, + variableWithConstrains, + allowedFixToNotProperType = false + ) if (resultType != null) { fixedVariables[variableWithConstrains.typeVariable] = resultType }