We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2c3701 commit 8fd67ccCopy full SHA for 8fd67cc
1 file changed
stub/src/main/java/com/omega_r/libs/omegatypes/Text.kt
@@ -21,6 +21,10 @@ open class Text : Serializable, Textable {
21
22
operator fun plus(text: Text): Text = throw Exception()
23
24
+ open operator fun plus(string: String): Text = throw Exception()
25
+
26
+ open operator fun plus(text: Textable): Text = throw Exception()
27
28
override fun toText(): Text = throw Exception()
29
30
}
0 commit comments