what-the-bank/sources/com/scb/phone/view/custom/easycash/CustomCheckBoxLayout_ViewBi...

31 lines
1.1 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.scb.phone.view.custom.easycash;
import android.view.View;
import android.widget.TextView;
import androidx.recyclerview.widget.RecyclerView;
import butterknife.Unbinder;
import com.scb.phone.R;
import o.pyT;
/* loaded from: classes5.dex */
public class CustomCheckBoxLayout_ViewBinding implements Unbinder {
private CustomCheckBoxLayout b;
public CustomCheckBoxLayout_ViewBinding(CustomCheckBoxLayout customCheckBoxLayout, View view) {
this.b = customCheckBoxLayout;
customCheckBoxLayout.rvCustomCheckBox = (RecyclerView) pyT.e(view, R.id.rv_button_checkbox, "field 'rvCustomCheckBox'", RecyclerView.class);
customCheckBoxLayout.errorMessage = (TextView) pyT.e(view, R.id.error_message, "field 'errorMessage'", TextView.class);
}
@Override // butterknife.Unbinder
public final void a() {
CustomCheckBoxLayout customCheckBoxLayout = this.b;
if (customCheckBoxLayout == null) {
throw new IllegalStateException("Bindings already cleared.");
}
this.b = null;
customCheckBoxLayout.rvCustomCheckBox = null;
customCheckBoxLayout.errorMessage = null;
}
}