35 lines
1.3 KiB
Java
35 lines
1.3 KiB
Java
|
package com.scb.phone.view.custom.common;
|
||
|
|
||
|
import android.view.View;
|
||
|
import android.widget.TextView;
|
||
|
import androidx.appcompat.widget.SwitchCompat;
|
||
|
import butterknife.Unbinder;
|
||
|
import com.scb.phone.R;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public class CustomSwitchCell_ViewBinding implements Unbinder {
|
||
|
private CustomSwitchCell b;
|
||
|
|
||
|
public CustomSwitchCell_ViewBinding(CustomSwitchCell customSwitchCell, View view) {
|
||
|
this.b = customSwitchCell;
|
||
|
customSwitchCell.text = (TextView) pyT.e(view, R.id.custom_cell_text_view, "field 'text'", TextView.class);
|
||
|
customSwitchCell.switchCompat = (SwitchCompat) pyT.e(view, R.id.custom_cell_switch, "field 'switchCompat'", SwitchCompat.class);
|
||
|
customSwitchCell.divider = pyT.a(view, R.id.custom_cell_divider, "field 'divider'");
|
||
|
customSwitchCell.ripple = pyT.a(view, R.id.custom_cell_ripple, "field 'ripple'");
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
CustomSwitchCell customSwitchCell = this.b;
|
||
|
if (customSwitchCell == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.b = null;
|
||
|
customSwitchCell.text = null;
|
||
|
customSwitchCell.switchCompat = null;
|
||
|
customSwitchCell.divider = null;
|
||
|
customSwitchCell.ripple = null;
|
||
|
}
|
||
|
}
|