34 lines
1.3 KiB
Java
34 lines
1.3 KiB
Java
package com.scb.phone.view.custom.remittance;
|
|
|
|
import android.view.View;
|
|
import android.widget.ImageView;
|
|
import android.widget.TextView;
|
|
import androidx.constraintlayout.widget.ConstraintLayout;
|
|
import butterknife.Unbinder;
|
|
import com.scb.phone.R;
|
|
import o.pyT;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class TransferOptionView_ViewBinding implements Unbinder {
|
|
private TransferOptionView c;
|
|
|
|
public TransferOptionView_ViewBinding(TransferOptionView transferOptionView, View view) {
|
|
this.c = transferOptionView;
|
|
transferOptionView.clTransfer = (ConstraintLayout) pyT.e(view, R.id.cl_transfer_type, "field 'clTransfer'", ConstraintLayout.class);
|
|
transferOptionView.tvTransfer = (TextView) pyT.e(view, R.id.tv_transfer_type, "field 'tvTransfer'", TextView.class);
|
|
transferOptionView.ivTransfer = (ImageView) pyT.e(view, R.id.iv_transfer_type, "field 'ivTransfer'", ImageView.class);
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public final void a() {
|
|
TransferOptionView transferOptionView = this.c;
|
|
if (transferOptionView == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.c = null;
|
|
transferOptionView.clTransfer = null;
|
|
transferOptionView.tvTransfer = null;
|
|
transferOptionView.ivTransfer = null;
|
|
}
|
|
}
|