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

36 lines
1.6 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.scb.phone.view.custom;
import android.view.View;
import android.widget.TextView;
import androidx.constraintlayout.widget.Group;
import androidx.recyclerview.widget.RecyclerView;
import butterknife.Unbinder;
import com.scb.phone.R;
import o.pyT;
/* loaded from: classes5.dex */
public class CustomCheckboxGroupView_ViewBinding implements Unbinder {
private CustomCheckboxGroupView d;
public CustomCheckboxGroupView_ViewBinding(CustomCheckboxGroupView customCheckboxGroupView, View view) {
this.d = customCheckboxGroupView;
customCheckboxGroupView.title = (TextView) pyT.e(view, R.id.tv_title, "field 'title'", TextView.class);
customCheckboxGroupView.mainCheckbox = (CustomCheckboxView) pyT.e(view, R.id.main_checkbox, "field 'mainCheckbox'", CustomCheckboxView.class);
customCheckboxGroupView.childrenContainer = (RecyclerView) pyT.e(view, R.id.rv_children_container, "field 'childrenContainer'", RecyclerView.class);
customCheckboxGroupView.childrenGroup = (Group) pyT.e(view, R.id.children_group, "field 'childrenGroup'", Group.class);
}
@Override // butterknife.Unbinder
public final void a() {
CustomCheckboxGroupView customCheckboxGroupView = this.d;
if (customCheckboxGroupView == null) {
throw new IllegalStateException("Bindings already cleared.");
}
this.d = null;
customCheckboxGroupView.title = null;
customCheckboxGroupView.mainCheckbox = null;
customCheckboxGroupView.childrenContainer = null;
customCheckboxGroupView.childrenGroup = null;
}
}