mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2026-03-02 03:39:24 +00:00
Use DynamicBundle instead of AbstractBundle in MyBundle.kt
This commit is contained in:
committed by
Jakub Chrzanowski
parent
1f68a13de9
commit
3ab6c490fa
@@ -1,13 +1,14 @@
|
||||
package org.jetbrains.plugins.template
|
||||
|
||||
import com.intellij.AbstractBundle
|
||||
import com.intellij.DynamicBundle
|
||||
import org.jetbrains.annotations.NonNls
|
||||
import org.jetbrains.annotations.PropertyKey
|
||||
|
||||
@NonNls
|
||||
private const val BUNDLE = "messages.MyBundle"
|
||||
|
||||
object MyBundle : AbstractBundle(BUNDLE) {
|
||||
object MyBundle : DynamicBundle(BUNDLE) {
|
||||
|
||||
@Suppress("SpreadOperator")
|
||||
@JvmStatic
|
||||
|
||||
Reference in New Issue
Block a user