mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2024-10-27 20:44:05 +00:00
MyBundle - use AbstractBundle instead of DynamicBundle for 2019.3 support
This commit is contained in:
parent
5bf0adc5b7
commit
24617eb392
@ -1,13 +1,13 @@
|
|||||||
package org.jetbrains.plugins.template
|
package org.jetbrains.plugins.template
|
||||||
|
|
||||||
import com.intellij.DynamicBundle
|
import com.intellij.AbstractBundle
|
||||||
import org.jetbrains.annotations.NonNls
|
import org.jetbrains.annotations.NonNls
|
||||||
import org.jetbrains.annotations.PropertyKey
|
import org.jetbrains.annotations.PropertyKey
|
||||||
|
|
||||||
@NonNls
|
@NonNls
|
||||||
private const val BUNDLE = "messages.MyBundle"
|
private const val BUNDLE = "messages.MyBundle"
|
||||||
|
|
||||||
object MyBundle : DynamicBundle(BUNDLE) {
|
object MyBundle : AbstractBundle(BUNDLE) {
|
||||||
|
|
||||||
@Suppress("SpreadOperator")
|
@Suppress("SpreadOperator")
|
||||||
@JvmStatic
|
@JvmStatic
|
||||||
|
Loading…
Reference in New Issue
Block a user