i18n: add @NotNls to bundles

This commit is contained in:
Dmitry Gridin
2020-02-21 16:52:01 +07:00
parent 354c9c913a
commit 8de7d303a0
22 changed files with 23 additions and 23 deletions
@@ -14,5 +14,5 @@ private const val BUNDLE = "messages.KotlinJ2KBundle"
object KotlinJ2KBundle : AbstractKotlinBundle(BUNDLE) {
@JvmStatic
fun message(@PropertyKey(resourceBundle = BUNDLE) key: String, vararg params: Any): String = getMessage(key, *params)
fun message(@NonNls @PropertyKey(resourceBundle = BUNDLE) key: String, vararg params: Any): String = getMessage(key, *params)
}