40 lines
1.8 KiB
Java
40 lines
1.8 KiB
Java
|
package com.scb.phone.view.custom.common;
|
||
|
|
||
|
import android.view.View;
|
||
|
import android.widget.Button;
|
||
|
import android.widget.EditText;
|
||
|
import android.widget.TextView;
|
||
|
import butterknife.Unbinder;
|
||
|
import com.scb.phone.R;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public class CustomInputDialog_ViewBinding implements Unbinder {
|
||
|
private CustomInputDialog b;
|
||
|
|
||
|
public CustomInputDialog_ViewBinding(CustomInputDialog customInputDialog, View view) {
|
||
|
this.b = customInputDialog;
|
||
|
customInputDialog.mTitleTextView = (TextView) pyT.e(view, R.id.dialog_title, "field 'mTitleTextView'", TextView.class);
|
||
|
customInputDialog.mTextTextView = (TextView) pyT.e(view, R.id.dialog_text, "field 'mTextTextView'", TextView.class);
|
||
|
customInputDialog.mEditTextView = (EditText) pyT.e(view, R.id.dialog_edit_text, "field 'mEditTextView'", EditText.class);
|
||
|
customInputDialog.mPositiveButton = (Button) pyT.e(view, R.id.dialog_positive_button, "field 'mPositiveButton'", Button.class);
|
||
|
customInputDialog.mNegativeButton = (Button) pyT.e(view, R.id.dialog_negative_button, "field 'mNegativeButton'", Button.class);
|
||
|
customInputDialog.mErrorTextView = (TextView) pyT.e(view, R.id.error_text_view, "field 'mErrorTextView'", TextView.class);
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
CustomInputDialog customInputDialog = this.b;
|
||
|
if (customInputDialog == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.b = null;
|
||
|
customInputDialog.mTitleTextView = null;
|
||
|
customInputDialog.mTextTextView = null;
|
||
|
customInputDialog.mEditTextView = null;
|
||
|
customInputDialog.mPositiveButton = null;
|
||
|
customInputDialog.mNegativeButton = null;
|
||
|
customInputDialog.mErrorTextView = null;
|
||
|
}
|
||
|
}
|