what-the-bank/sources/com/scb/phone/view/custom/common/CustomBillsToPay_ViewBindin...

39 lines
1.9 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.scb.phone.view.custom.common;
import android.view.View;
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 CustomBillsToPay_ViewBinding implements Unbinder {
private CustomBillsToPay b;
public CustomBillsToPay_ViewBinding(CustomBillsToPay customBillsToPay, View view) {
this.b = customBillsToPay;
customBillsToPay.mIconDrawableImageView = (ImageView) pyT.e(view, R.id.bills_to_pay_image_view, "field 'mIconDrawableImageView'", ImageView.class);
customBillsToPay.mAmountTitleTextView = (TextView) pyT.e(view, R.id.bills_to_pay_amount_title_text_view, "field 'mAmountTitleTextView'", TextView.class);
customBillsToPay.mAmountValueTextView = (TextView) pyT.e(view, R.id.bills_to_pay_amount_due_text_view, "field 'mAmountValueTextView'", TextView.class);
customBillsToPay.mDueDateTextView = (TextView) pyT.e(view, R.id.bills_to_pay_due_date_text_view, "field 'mDueDateTextView'", TextView.class);
customBillsToPay.mDefaultButton = (DefaultButton) pyT.e(view, R.id.bills_to_pay_default_button, "field 'mDefaultButton'", DefaultButton.class);
customBillsToPay.mCompletedText = (TextView) pyT.e(view, R.id.bills_to_pay_completed, "field 'mCompletedText'", TextView.class);
}
@Override // butterknife.Unbinder
public final void a() {
CustomBillsToPay customBillsToPay = this.b;
if (customBillsToPay == null) {
throw new IllegalStateException("Bindings already cleared.");
}
this.b = null;
customBillsToPay.mIconDrawableImageView = null;
customBillsToPay.mAmountTitleTextView = null;
customBillsToPay.mAmountValueTextView = null;
customBillsToPay.mDueDateTextView = null;
customBillsToPay.mDefaultButton = null;
customBillsToPay.mCompletedText = null;
}
}