32 lines
1.3 KiB
Java
32 lines
1.3 KiB
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 CustomRecentTransaction_ViewBinding implements Unbinder {
|
|
private CustomRecentTransaction e;
|
|
|
|
public CustomRecentTransaction_ViewBinding(CustomRecentTransaction customRecentTransaction, View view) {
|
|
this.e = customRecentTransaction;
|
|
customRecentTransaction.borderView = pyT.a(view, R.id.border, "field 'borderView'");
|
|
customRecentTransaction.dateTextView = (TextView) pyT.e(view, R.id.recent_transaction_date_text_view, "field 'dateTextView'", TextView.class);
|
|
customRecentTransaction.valueTextView = (TextView) pyT.e(view, R.id.recent_transaction_value_text_view, "field 'valueTextView'", TextView.class);
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public final void a() {
|
|
CustomRecentTransaction customRecentTransaction = this.e;
|
|
if (customRecentTransaction == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.e = null;
|
|
customRecentTransaction.borderView = null;
|
|
customRecentTransaction.dateTextView = null;
|
|
customRecentTransaction.valueTextView = null;
|
|
}
|
|
}
|