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; } }