diff --git a/idea/src/org/jetbrains/kotlin/idea/intentions/loopToCallChain/result/FindTransformationMatcher.kt b/idea/src/org/jetbrains/kotlin/idea/intentions/loopToCallChain/result/FindTransformationMatcher.kt index ac40a980eee..9fa93e03874 100644 --- a/idea/src/org/jetbrains/kotlin/idea/intentions/loopToCallChain/result/FindTransformationMatcher.kt +++ b/idea/src/org/jetbrains/kotlin/idea/intentions/loopToCallChain/result/FindTransformationMatcher.kt @@ -188,7 +188,7 @@ object FindTransformationMatcher : TransformationMatcher { chainedCallGenerator.generate("$stdlibFunName()") } else { - val lambda = org.jetbrains.kotlin.idea.intentions.loopToCallChain.generateLambda(inputVariable, filter) + val lambda = generateLambda(inputVariable, filter) chainedCallGenerator.generate("$stdlibFunName $0:'{}'", lambda) } }