mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
20 lines
570 B
Java
20 lines
570 B
Java
|
package com.google.android.material.internal;
|
||
|
|
||
|
import android.text.Editable;
|
||
|
import android.text.TextWatcher;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public class TextWatcherAdapter implements TextWatcher {
|
||
|
@Override // android.text.TextWatcher
|
||
|
public void afterTextChanged(Editable editable) {
|
||
|
}
|
||
|
|
||
|
@Override // android.text.TextWatcher
|
||
|
public void beforeTextChanged(CharSequence charSequence, int i, int i2, int i3) {
|
||
|
}
|
||
|
|
||
|
@Override // android.text.TextWatcher
|
||
|
public void onTextChanged(CharSequence charSequence, int i, int i2, int i3) {
|
||
|
}
|
||
|
}
|