Minor: fix formatting

This commit is contained in:
Dmitry Petrov
2017-06-07 16:33:51 +03:00
committed by Mikhail Zarechenskiy
parent bc2a8555a3
commit 1ae4278cfd
@@ -162,8 +162,11 @@ class NewConstraintSystemImpl(val constraintInjector: ConstraintInjector, val re
val fixedVariables = LinkedHashMap<NewTypeVariable, UnwrappedType>()
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
}