mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
12 lines
376 B
Kotlin
12 lines
376 B
Kotlin
package eu.kanade.tachiyomi.widget
|
|
|
|
import android.text.Editable
|
|
import android.text.TextWatcher
|
|
|
|
open class SimpleTextWatcher : TextWatcher {
|
|
override fun beforeTextChanged(s: CharSequence, start: Int, count: Int, after: Int) {}
|
|
|
|
override fun onTextChanged(s: CharSequence, start: Int, before: Int, count: Int) {}
|
|
|
|
override fun afterTextChanged(s: Editable) {}
|
|
}
|