From 0af3c6542dcf5f5a31e28f0db6b3c442b55c4e88 Mon Sep 17 00:00:00 2001 From: Toshiaki Kameyama Date: Tue, 11 Jul 2017 13:43:18 +0300 Subject: [PATCH] Correct "after" sample for intention "Convert to apply" #KT-18723 Fixed --- .../ConvertToApplyIntention/after.kt.template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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