what-the-bank/sources/com/scb/phone/view/custom/common/CustomAmountRow_ViewBinding...

30 lines
980 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.scb.phone.view.custom.common;
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 CustomAmountRow_ViewBinding implements Unbinder {
private CustomAmountRow c;
public CustomAmountRow_ViewBinding(CustomAmountRow customAmountRow, View view) {
this.c = customAmountRow;
customAmountRow.title = (TextView) pyT.e(view, R.id.tv_title, "field 'title'", TextView.class);
customAmountRow.amount = (TextView) pyT.e(view, R.id.tv_amount, "field 'amount'", TextView.class);
}
@Override // butterknife.Unbinder
public final void a() {
CustomAmountRow customAmountRow = this.c;
if (customAmountRow == null) {
throw new IllegalStateException("Bindings already cleared.");
}
this.c = null;
customAmountRow.title = null;
customAmountRow.amount = null;
}
}