Qodana integration

This commit is contained in:
Jakub Chrzanowski
2021-09-02 15:05:13 +02:00
committed by Jakub Chrzanowski
parent e3dd698e1e
commit be7db8265f
9 changed files with 90 additions and 17 deletions

View File

@@ -1,6 +1,5 @@
package org.jetbrains.plugins.template
import com.intellij.AbstractBundle
import com.intellij.DynamicBundle
import org.jetbrains.annotations.NonNls
import org.jetbrains.annotations.PropertyKey
@@ -15,7 +14,7 @@ object MyBundle : DynamicBundle(BUNDLE) {
fun message(@PropertyKey(resourceBundle = BUNDLE) key: String, vararg params: Any) =
getMessage(key, *params)
@Suppress("SpreadOperator")
@Suppress("SpreadOperator", "unused")
@JvmStatic
fun messagePointer(@PropertyKey(resourceBundle = BUNDLE) key: String, vararg params: Any) =
getLazyMessage(key, *params)