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

37 lines
1.7 KiB
Java

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 CustomSwitchItem_ViewBinding implements Unbinder {
private CustomSwitchItem b;
public CustomSwitchItem_ViewBinding(CustomSwitchItem customSwitchItem, View view) {
this.b = customSwitchItem;
customSwitchItem.firstLabelTextView = (TextView) pyT.e(view, R.id.first_label_text_view, "field 'firstLabelTextView'", TextView.class);
customSwitchItem.firstValueTextView = (TextView) pyT.e(view, R.id.first_value_text_view, "field 'firstValueTextView'", TextView.class);
customSwitchItem.secondLabelTextView = (TextView) pyT.e(view, R.id.second_label_text_view, "field 'secondLabelTextView'", TextView.class);
customSwitchItem.secondValueTextView = (TextView) pyT.e(view, R.id.second_value_text_view, "field 'secondValueTextView'", TextView.class);
customSwitchItem.imageView = (ImageView) pyT.e(view, R.id.avatar_image_view, "field 'imageView'", ImageView.class);
}
@Override // butterknife.Unbinder
public final void a() {
CustomSwitchItem customSwitchItem = this.b;
if (customSwitchItem == null) {
throw new IllegalStateException("Bindings already cleared.");
}
this.b = null;
customSwitchItem.firstLabelTextView = null;
customSwitchItem.firstValueTextView = null;
customSwitchItem.secondLabelTextView = null;
customSwitchItem.secondValueTextView = null;
customSwitchItem.imageView = null;
}
}