35 lines
1.4 KiB
Java
35 lines
1.4 KiB
Java
|
package com.scb.phone.view.custom.prepaid;
|
||
|
|
||
|
import android.view.View;
|
||
|
import android.widget.ImageView;
|
||
|
import android.widget.TextView;
|
||
|
import butterknife.Unbinder;
|
||
|
import com.scb.phone.R;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public final class ConversionToWallet_ViewBinding implements Unbinder {
|
||
|
private ConversionToWallet c;
|
||
|
|
||
|
public ConversionToWallet_ViewBinding(ConversionToWallet conversionToWallet, View view) {
|
||
|
this.c = conversionToWallet;
|
||
|
conversionToWallet.tvToAmount = (TextView) pyT.e(view, R.id.tvToAmount, "field 'tvToAmount'", TextView.class);
|
||
|
conversionToWallet.tvFullRate = (TextView) pyT.e(view, R.id.tvFullRate, "field 'tvFullRate'", TextView.class);
|
||
|
conversionToWallet.tvToCurrency = (TextView) pyT.e(view, R.id.tvToCurrency, "field 'tvToCurrency'", TextView.class);
|
||
|
conversionToWallet.ivToFlag = (ImageView) pyT.e(view, R.id.icToFlag, "field 'ivToFlag'", ImageView.class);
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
ConversionToWallet conversionToWallet = this.c;
|
||
|
if (conversionToWallet == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.c = null;
|
||
|
conversionToWallet.tvToAmount = null;
|
||
|
conversionToWallet.tvFullRate = null;
|
||
|
conversionToWallet.tvToCurrency = null;
|
||
|
conversionToWallet.ivToFlag = null;
|
||
|
}
|
||
|
}
|