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.ImageView;
|
||
|
import android.widget.TextView;
|
||
|
import butterknife.Unbinder;
|
||
|
import com.scb.phone.R;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public class CustomDisclosureCell_ViewBinding implements Unbinder {
|
||
|
private CustomDisclosureCell d;
|
||
|
|
||
|
public CustomDisclosureCell_ViewBinding(CustomDisclosureCell customDisclosureCell, View view) {
|
||
|
this.d = customDisclosureCell;
|
||
|
customDisclosureCell.text = (TextView) pyT.e(view, R.id.custom_cell_text_view, "field 'text'", TextView.class);
|
||
|
customDisclosureCell.icon = (ImageView) pyT.e(view, R.id.custom_cell_icon_image_view, "field 'icon'", ImageView.class);
|
||
|
customDisclosureCell.divider = pyT.a(view, R.id.custom_cell_divider, "field 'divider'");
|
||
|
customDisclosureCell.ripple = pyT.a(view, R.id.custom_cell_ripple, "field 'ripple'");
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
CustomDisclosureCell customDisclosureCell = this.d;
|
||
|
if (customDisclosureCell == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.d = null;
|
||
|
customDisclosureCell.text = null;
|
||
|
customDisclosureCell.icon = null;
|
||
|
customDisclosureCell.divider = null;
|
||
|
customDisclosureCell.ripple = null;
|
||
|
}
|
||
|
}
|