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

33 lines
1.2 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.CheckBox;
import android.widget.TextView;
import butterknife.Unbinder;
import com.scb.phone.R;
import o.pyT;
/* loaded from: classes5.dex */
public class CustomCheckboxView_ViewBinding implements Unbinder {
private CustomCheckboxView e;
public CustomCheckboxView_ViewBinding(CustomCheckboxView customCheckboxView, View view) {
this.e = customCheckboxView;
customCheckboxView.title = (TextView) pyT.e(view, R.id.tv_title, "field 'title'", TextView.class);
customCheckboxView.subtitle = (TextView) pyT.e(view, R.id.tv_subtitle, "field 'subtitle'", TextView.class);
customCheckboxView.toggleView = (CheckBox) pyT.e(view, R.id.cb_toggle_view, "field 'toggleView'", CheckBox.class);
}
@Override // butterknife.Unbinder
public final void a() {
CustomCheckboxView customCheckboxView = this.e;
if (customCheckboxView == null) {
throw new IllegalStateException("Bindings already cleared.");
}
this.e = null;
customCheckboxView.title = null;
customCheckboxView.subtitle = null;
customCheckboxView.toggleView = null;
}
}