38 lines
1.6 KiB
Java
38 lines
1.6 KiB
Java
|
package com.scb.phone.view.custom.hml;
|
||
|
|
||
|
import android.view.View;
|
||
|
import android.widget.Button;
|
||
|
import android.widget.LinearLayout;
|
||
|
import android.widget.TextView;
|
||
|
import butterknife.Unbinder;
|
||
|
import com.scb.phone.R;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public class HmlCommonCustomDialog_ViewBinding implements Unbinder {
|
||
|
private HmlCommonCustomDialog b;
|
||
|
|
||
|
public HmlCommonCustomDialog_ViewBinding(HmlCommonCustomDialog hmlCommonCustomDialog, View view) {
|
||
|
this.b = hmlCommonCustomDialog;
|
||
|
hmlCommonCustomDialog.titleText = (TextView) pyT.e(view, R.id.tv_title, "field 'titleText'", TextView.class);
|
||
|
hmlCommonCustomDialog.messageText = (TextView) pyT.e(view, R.id.tv_message, "field 'messageText'", TextView.class);
|
||
|
hmlCommonCustomDialog.positiveButton = (Button) pyT.e(view, R.id.bt_retake, "field 'positiveButton'", Button.class);
|
||
|
hmlCommonCustomDialog.negativeButton = (TextView) pyT.e(view, R.id.tv_proceed_button, "field 'negativeButton'", TextView.class);
|
||
|
hmlCommonCustomDialog.rootView = (LinearLayout) pyT.e(view, R.id.ll_root, "field 'rootView'", LinearLayout.class);
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
HmlCommonCustomDialog hmlCommonCustomDialog = this.b;
|
||
|
if (hmlCommonCustomDialog == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.b = null;
|
||
|
hmlCommonCustomDialog.titleText = null;
|
||
|
hmlCommonCustomDialog.messageText = null;
|
||
|
hmlCommonCustomDialog.positiveButton = null;
|
||
|
hmlCommonCustomDialog.negativeButton = null;
|
||
|
hmlCommonCustomDialog.rootView = null;
|
||
|
}
|
||
|
}
|