From fda097fc3b4e8e6ed3ad4ff5c7feacbf1b52f20c Mon Sep 17 00:00:00 2001 From: Toshiaki Kameyama Date: Mon, 17 Jul 2017 20:03:15 +0900 Subject: [PATCH] Correct "before" sample in description for intention Convert to enum class #KT-18722 Fixed (#1196) --- .../ConvertSealedClassToEnumIntention/before.kt.template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/idea/resources/intentionDescriptions/ConvertSealedClassToEnumIntention/before.kt.template b/idea/resources/intentionDescriptions/ConvertSealedClassToEnumIntention/before.kt.template index 534bf0391c3..93093038204 100644 --- a/idea/resources/intentionDescriptions/ConvertSealedClassToEnumIntention/before.kt.template +++ b/idea/resources/intentionDescriptions/ConvertSealedClassToEnumIntention/before.kt.template @@ -3,7 +3,7 @@ sealed class MyClass(val s: String = "") { } - object FOO : MyEnum("FOO") - object BAR : MyEnum("BAR") - object DEFAULT : MyEnum() + object FOO : MyClass("FOO") + object BAR : MyClass("BAR") + object DEFAULT : MyClass() } \ No newline at end of file