51 lines
1.9 KiB
Java
51 lines
1.9 KiB
Java
package com.scb.phone.view.custom.cardmanagement;
|
|
|
|
import android.view.View;
|
|
import android.widget.CheckBox;
|
|
import android.widget.TextView;
|
|
import butterknife.Unbinder;
|
|
import com.scb.phone.R;
|
|
import o.gnL;
|
|
import o.pyT;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public class TermsAndConditionsView_ViewBinding implements Unbinder {
|
|
private TermsAndConditionsView c;
|
|
private View d;
|
|
|
|
public TermsAndConditionsView_ViewBinding(TermsAndConditionsView termsAndConditionsView, View view) {
|
|
this.c = termsAndConditionsView;
|
|
View a = pyT.a(view, R.id.chk_terms_and_conditions, "field 'termsCheckBox' and method 'onCheckBoxClick'");
|
|
termsAndConditionsView.termsCheckBox = (CheckBox) pyT.c(a, R.id.chk_terms_and_conditions, "field 'termsCheckBox'", CheckBox.class);
|
|
this.d = a;
|
|
a.setOnClickListener(new gnL(this, termsAndConditionsView) { // from class: com.scb.phone.view.custom.cardmanagement.TermsAndConditionsView_ViewBinding.1
|
|
private TermsAndConditionsView_ViewBinding a;
|
|
private TermsAndConditionsView e;
|
|
|
|
{
|
|
this.a = this;
|
|
this.e = termsAndConditionsView;
|
|
}
|
|
|
|
@Override // o.gnL
|
|
public final void e(View view2) {
|
|
this.e.onCheckBoxClick();
|
|
}
|
|
});
|
|
termsAndConditionsView.txvTermsAndConditions = (TextView) pyT.e(view, R.id.txv_terms_and_condition, "field 'txvTermsAndConditions'", TextView.class);
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public final void a() {
|
|
TermsAndConditionsView termsAndConditionsView = this.c;
|
|
if (termsAndConditionsView == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.c = null;
|
|
termsAndConditionsView.termsCheckBox = null;
|
|
termsAndConditionsView.txvTermsAndConditions = null;
|
|
this.d.setOnClickListener(null);
|
|
this.d = null;
|
|
}
|
|
}
|