From 2adcb6d616880b24c17747c1435e62102a47e8c8 Mon Sep 17 00:00:00 2001 From: Anton Yalyshev Date: Tue, 18 Jun 2019 12:15:14 +0300 Subject: [PATCH] fixed a set of possible values for New File Templates collector --- .../kotlin/idea/statistics/FUSEventGroups.kt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/idea/idea-core/src/org/jetbrains/kotlin/idea/statistics/FUSEventGroups.kt b/idea/idea-core/src/org/jetbrains/kotlin/idea/statistics/FUSEventGroups.kt index d823fedf565..91779cc4072 100644 --- a/idea/idea-core/src/org/jetbrains/kotlin/idea/statistics/FUSEventGroups.kt +++ b/idea/idea-core/src/org/jetbrains/kotlin/idea/statistics/FUSEventGroups.kt @@ -77,13 +77,13 @@ val refactoringEvents = hashSetOf( "JavaMemberByKotlinReferenceInplaceRenameHandler" ) val newFileTemplateEvents = hashSetOf( - "Kotlin_File", - "Kotlin_Class", - "Kotlin_Interface", - "Kotlin_Object", - "Kotlin_Enum", - "Kotlin_Scratch", - "Kotlin_Script" + "Kotlin File", + "Kotlin Class", + "Kotlin Interface", + "Kotlin Object", + "Kotlin Enum", + "Kotlin Scratch", + "Kotlin Script" ) val NPWizardsEvents = hashSetOf( "KotlinModuleBuilder: JVM (JVM_1_6)",