From 24617eb39288f20663abe788e5adc5b54f1e0a34 Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Tue, 23 Jun 2020 12:23:39 +0200 Subject: [PATCH] MyBundle - use AbstractBundle instead of DynamicBundle for 2019.3 support --- src/main/kotlin/org/jetbrains/plugins/template/MyBundle.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/org/jetbrains/plugins/template/MyBundle.kt b/src/main/kotlin/org/jetbrains/plugins/template/MyBundle.kt index be0c472..19e949e 100644 --- a/src/main/kotlin/org/jetbrains/plugins/template/MyBundle.kt +++ b/src/main/kotlin/org/jetbrains/plugins/template/MyBundle.kt @@ -1,13 +1,13 @@ package org.jetbrains.plugins.template -import com.intellij.DynamicBundle +import com.intellij.AbstractBundle import org.jetbrains.annotations.NonNls import org.jetbrains.annotations.PropertyKey @NonNls private const val BUNDLE = "messages.MyBundle" -object MyBundle : DynamicBundle(BUNDLE) { +object MyBundle : AbstractBundle(BUNDLE) { @Suppress("SpreadOperator") @JvmStatic