30 lines
1.2 KiB
Java
30 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 CustomTransferAndPayStatus_ViewBinding implements Unbinder {
|
|
private CustomTransferAndPayStatus c;
|
|
|
|
public CustomTransferAndPayStatus_ViewBinding(CustomTransferAndPayStatus customTransferAndPayStatus, View view) {
|
|
this.c = customTransferAndPayStatus;
|
|
customTransferAndPayStatus.mDateTextView = (TextView) pyT.e(view, R.id.date_text_view, "field 'mDateTextView'", TextView.class);
|
|
customTransferAndPayStatus.mStatusTextView = (TextView) pyT.e(view, R.id.status_text_view, "field 'mStatusTextView'", TextView.class);
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public final void a() {
|
|
CustomTransferAndPayStatus customTransferAndPayStatus = this.c;
|
|
if (customTransferAndPayStatus == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.c = null;
|
|
customTransferAndPayStatus.mDateTextView = null;
|
|
customTransferAndPayStatus.mStatusTextView = null;
|
|
}
|
|
}
|