35 lines
1.4 KiB
Java
35 lines
1.4 KiB
Java
|
package com.scb.phone.view.custom.easycash;
|
||
|
|
||
|
import android.view.View;
|
||
|
import android.widget.LinearLayout;
|
||
|
import android.widget.TextView;
|
||
|
import butterknife.Unbinder;
|
||
|
import com.scb.phone.R;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public class CustomInfoItem_ViewBinding implements Unbinder {
|
||
|
private CustomInfoItem b;
|
||
|
|
||
|
public CustomInfoItem_ViewBinding(CustomInfoItem customInfoItem, View view) {
|
||
|
this.b = customInfoItem;
|
||
|
customInfoItem.tvItemLeft = (TextView) pyT.e(view, R.id.overview_item_left, "field 'tvItemLeft'", TextView.class);
|
||
|
customInfoItem.tvItemRight = (TextView) pyT.e(view, R.id.overview_item_right, "field 'tvItemRight'", TextView.class);
|
||
|
customInfoItem.tvItemBottom = (TextView) pyT.e(view, R.id.overview_item_bottom, "field 'tvItemBottom'", TextView.class);
|
||
|
customInfoItem.infoDetails = (LinearLayout) pyT.e(view, R.id.info_details, "field 'infoDetails'", LinearLayout.class);
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
CustomInfoItem customInfoItem = this.b;
|
||
|
if (customInfoItem == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.b = null;
|
||
|
customInfoItem.tvItemLeft = null;
|
||
|
customInfoItem.tvItemRight = null;
|
||
|
customInfoItem.tvItemBottom = null;
|
||
|
customInfoItem.infoDetails = null;
|
||
|
}
|
||
|
}
|