We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c562558 commit 47d58caCopy full SHA for 47d58ca
workflow-ui/core-common/src/main/java/com/squareup/workflow1/ui/TextController.kt
@@ -87,4 +87,17 @@ private class TextControllerImpl(initialValue: String) : TextController {
87
set(value) {
88
_textValue.value = value
89
}
90
+
91
+ override fun equals(other: Any?): Boolean {
92
+ if (this === other) return true
93
+ if (javaClass != other?.javaClass) return false
94
95
+ other as TextController
96
97
+ return textValue == other.textValue
98
+ }
99
100
+ override fun hashCode(): Int {
101
+ return textValue.hashCode()
102
103
0 commit comments