37 lines
1.4 KiB
Java
37 lines
1.4 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 CustomEditCell_ViewBinding implements Unbinder {
|
|
private CustomEditCell e;
|
|
|
|
public CustomEditCell_ViewBinding(CustomEditCell customEditCell, View view) {
|
|
this.e = customEditCell;
|
|
customEditCell.title = (TextView) pyT.e(view, R.id.custom_cell_title_text_view, "field 'title'", TextView.class);
|
|
customEditCell.text = (TextView) pyT.e(view, R.id.custom_cell_value_text_view, "field 'text'", TextView.class);
|
|
customEditCell.icon = (ImageView) pyT.e(view, R.id.custom_cell_icon_image_view, "field 'icon'", ImageView.class);
|
|
customEditCell.divider = pyT.a(view, R.id.custom_cell_divider, "field 'divider'");
|
|
customEditCell.ripple = pyT.a(view, R.id.custom_cell_ripple, "field 'ripple'");
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public final void a() {
|
|
CustomEditCell customEditCell = this.e;
|
|
if (customEditCell == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.e = null;
|
|
customEditCell.title = null;
|
|
customEditCell.text = null;
|
|
customEditCell.icon = null;
|
|
customEditCell.divider = null;
|
|
customEditCell.ripple = null;
|
|
}
|
|
}
|