31 lines
1.2 KiB
Java
31 lines
1.2 KiB
Java
|
package com.scb.phone.view.custom.common;
|
||
|
|
||
|
import android.view.View;
|
||
|
import butterknife.Unbinder;
|
||
|
import com.scb.phone.R;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public class CustomFundsActions_ViewBinding implements Unbinder {
|
||
|
private CustomFundsActions b;
|
||
|
|
||
|
public CustomFundsActions_ViewBinding(CustomFundsActions customFundsActions, View view) {
|
||
|
this.b = customFundsActions;
|
||
|
customFundsActions.purchaseButton = (DefaultButton) pyT.e(view, R.id.funds_purchase_button, "field 'purchaseButton'", DefaultButton.class);
|
||
|
customFundsActions.redeemButton = (DefaultButton) pyT.e(view, R.id.funds_redeem_button, "field 'redeemButton'", DefaultButton.class);
|
||
|
customFundsActions.switchButton = (DefaultButton) pyT.e(view, R.id.funds_switch_button, "field 'switchButton'", DefaultButton.class);
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
CustomFundsActions customFundsActions = this.b;
|
||
|
if (customFundsActions == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.b = null;
|
||
|
customFundsActions.purchaseButton = null;
|
||
|
customFundsActions.redeemButton = null;
|
||
|
customFundsActions.switchButton = null;
|
||
|
}
|
||
|
}
|