32 lines
1.2 KiB
Java
32 lines
1.2 KiB
Java
package com.scb.phone.view.custom.transferandpay;
|
|
|
|
import android.view.View;
|
|
import android.widget.TextView;
|
|
import butterknife.Unbinder;
|
|
import com.scb.phone.R;
|
|
import o.pyT;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public class CustomAmountInfoItem_ViewBinding implements Unbinder {
|
|
private CustomAmountInfoItem b;
|
|
|
|
public CustomAmountInfoItem_ViewBinding(CustomAmountInfoItem customAmountInfoItem, View view) {
|
|
this.b = customAmountInfoItem;
|
|
customAmountInfoItem.title = (TextView) pyT.e(view, R.id.additional_info_title, "field 'title'", TextView.class);
|
|
customAmountInfoItem.asideValue = (TextView) pyT.e(view, R.id.additional_info_aside_value, "field 'asideValue'", TextView.class);
|
|
customAmountInfoItem.value = (TextView) pyT.e(view, R.id.additional_info_value, "field 'value'", TextView.class);
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public final void a() {
|
|
CustomAmountInfoItem customAmountInfoItem = this.b;
|
|
if (customAmountInfoItem == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.b = null;
|
|
customAmountInfoItem.title = null;
|
|
customAmountInfoItem.asideValue = null;
|
|
customAmountInfoItem.value = null;
|
|
}
|
|
}
|