[FIR] Minor. Fix code style

This commit is contained in:
Dmitriy Novozhilov
2020-09-07 14:41:21 +03:00
parent 67604dcb66
commit 28a83b04cd
@@ -118,16 +118,16 @@ private class FirCallArgumentsProcessor(private val function: FirFunction<*>) {
return false return false
} }
if (!parameter.isVararg) { return if (!parameter.isVararg) {
currentPositionedParameterIndex++ currentPositionedParameterIndex++
result[parameter] = ResolvedCallArgument.SimpleArgument(argument) result[parameter] = ResolvedCallArgument.SimpleArgument(argument)
return false false
} }
// all position arguments will be mapped to current vararg parameter // all position arguments will be mapped to current vararg parameter
else { else {
addVarargArgument(argument) addVarargArgument(argument)
return true true
} }
} }