[Java] Remove unused JavaTerminalBundle#isMessageInBundle due to migration from using dynamic property keys

IDEA-359244

GitOrigin-RevId: ee4dfd4ba82891ada4610a5d7efae6b463ef9f4c
This commit is contained in:
Georgii Ustinov
2024-10-09 12:07:24 +03:00
committed by intellij-monorepo-bot
parent a62930fe83
commit cf9596a0fb

View File

@@ -20,7 +20,4 @@ object JavaTerminalBundle {
fun messagePointer(@PropertyKey(resourceBundle = BUNDLE) key: String, vararg params: Any?): Supplier<@Nls String> {
return INSTANCE.getLazyMessage(key = key, params = params)
}
@JvmStatic
fun isMessageInBundle(key: String): Boolean = INSTANCE.containsKey(key)
}