30 lines
980 B
Java
30 lines
980 B
Java
|
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;
|
||
|
}
|
||
|
}
|