Minor code corrections after code review
This commit is contained in:
@@ -111,8 +111,7 @@ private fun buildTemplate(lambdaType: JetType, explicitParameterTypes: Boolean,
|
||||
template.addTextSegment("(")
|
||||
}
|
||||
|
||||
for (i in parameterTypes.indices) {
|
||||
val parameterType = parameterTypes[i]
|
||||
for ((i, parameterType) in parameterTypes.withIndices()) {
|
||||
if (i > 0) {
|
||||
template.addTextSegment(", ")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user