38 lines
1.6 KiB
Java
38 lines
1.6 KiB
Java
|
package com.scb.phone.view.custom.common;
|
||
|
|
||
|
import android.view.View;
|
||
|
import android.widget.ImageButton;
|
||
|
import android.widget.ImageView;
|
||
|
import android.widget.TextView;
|
||
|
import butterknife.Unbinder;
|
||
|
import com.scb.phone.R;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public class ClearableEditText_ViewBinding implements Unbinder {
|
||
|
private ClearableEditText c;
|
||
|
|
||
|
public ClearableEditText_ViewBinding(ClearableEditText clearableEditText, View view) {
|
||
|
this.c = clearableEditText;
|
||
|
clearableEditText.inputEditText = (CustomNoteEditText) pyT.e(view, R.id.input_text, "field 'inputEditText'", CustomNoteEditText.class);
|
||
|
clearableEditText.inputTextLayout = pyT.a(view, R.id.input, "field 'inputTextLayout'");
|
||
|
clearableEditText.errorText = (TextView) pyT.e(view, R.id.error_text_view, "field 'errorText'", TextView.class);
|
||
|
clearableEditText.clearButton = (ImageButton) pyT.e(view, R.id.edit_clear, "field 'clearButton'", ImageButton.class);
|
||
|
clearableEditText.editTextIcon = (ImageView) pyT.a(view, R.id.edit_text_icon, "field 'editTextIcon'", ImageView.class);
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
ClearableEditText clearableEditText = this.c;
|
||
|
if (clearableEditText == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.c = null;
|
||
|
clearableEditText.inputEditText = null;
|
||
|
clearableEditText.inputTextLayout = null;
|
||
|
clearableEditText.errorText = null;
|
||
|
clearableEditText.clearButton = null;
|
||
|
clearableEditText.editTextIcon = null;
|
||
|
}
|
||
|
}
|