diff --git a/idea/resources/intentionDescriptions/ConvertToApplyIntention/after.kt.template b/idea/resources/intentionDescriptions/ConvertToApplyIntention/after.kt.template index 7908c98ee97..4a717375f0d 100644 --- a/idea/resources/intentionDescriptions/ConvertToApplyIntention/after.kt.template +++ b/idea/resources/intentionDescriptions/ConvertToApplyIntention/after.kt.template @@ -1,7 +1,7 @@ fun foo() { val a = MyClass().apply { - a.setFoo(1) - a.setBar(2) - a.setBaz(3) + setFoo(1) + setBar(2) + setBaz(3) } } \ No newline at end of file