override fun matches()

in shared/src/main/kotlin/org/jetbrains/plugins/template/ChatMessage.kt [35:39]


    override fun matches(query: String): Boolean {
        if (query.isBlank()) return false

        return content.contains(query, ignoreCase = true)
    }