Fix name() returning kotlin.Unit

This commit is contained in:
2025-04-09 22:46:52 -07:00
parent 3ad75442e0
commit 55eb70578b

View File

@@ -12,8 +12,8 @@ class MessageFormat {
} }
} }
fun name() { fun name(): String {
name(true) return name(true)
} }
fun setPrefix(text: String): String { fun setPrefix(text: String): String {