what-the-bank/sources/com/scb/phone/view/custom/easycash/CustomPhone_ViewBinding.java

33 lines
1.2 KiB
Java

package com.scb.phone.view.custom.easycash;
import android.view.View;
import android.widget.TextView;
import butterknife.Unbinder;
import com.scb.phone.R;
import com.scb.phone.view.custom.common.ScbEditText;
import o.pyT;
/* loaded from: classes5.dex */
public class CustomPhone_ViewBinding implements Unbinder {
private CustomPhone c;
public CustomPhone_ViewBinding(CustomPhone customPhone, View view) {
this.c = customPhone;
customPhone.proxyLabel = (TextView) pyT.e(view, R.id.text_label, "field 'proxyLabel'", TextView.class);
customPhone.proxyNumberField = (ScbEditText) pyT.e(view, R.id.edit_input_field, "field 'proxyNumberField'", ScbEditText.class);
customPhone.errorValidation = (TextView) pyT.e(view, R.id.text_error_label, "field 'errorValidation'", TextView.class);
}
@Override // butterknife.Unbinder
public final void a() {
CustomPhone customPhone = this.c;
if (customPhone == null) {
throw new IllegalStateException("Bindings already cleared.");
}
this.c = null;
customPhone.proxyLabel = null;
customPhone.proxyNumberField = null;
customPhone.errorValidation = null;
}
}