2016-05-27 13:21:21 +02:00
|
|
|
package eu.kanade.tachiyomi.widget
|
2016-03-13 22:06:32 +01:00
|
|
|
|
|
|
|
|
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) {}
|
|
|
|
|
}
|