35 lines
1.4 KiB
Java
35 lines
1.4 KiB
Java
package com.scb.phone.view.custom.common;
|
|
|
|
import android.view.View;
|
|
import android.widget.EditText;
|
|
import android.widget.TextView;
|
|
import butterknife.Unbinder;
|
|
import com.scb.phone.R;
|
|
import o.pyT;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public class CustomAddressInput_ViewBinding implements Unbinder {
|
|
private CustomAddressInput e;
|
|
|
|
public CustomAddressInput_ViewBinding(CustomAddressInput customAddressInput, View view) {
|
|
this.e = customAddressInput;
|
|
customAddressInput.titleLabel = (TextView) pyT.e(view, R.id.title_label, "field 'titleLabel'", TextView.class);
|
|
customAddressInput.mandatorySymbol = (TextView) pyT.e(view, R.id.mandatory_symbol, "field 'mandatorySymbol'", TextView.class);
|
|
customAddressInput.inputTextField = (EditText) pyT.e(view, R.id.input_text_field, "field 'inputTextField'", EditText.class);
|
|
customAddressInput.errorInline = (TextView) pyT.e(view, R.id.address_inline_error, "field 'errorInline'", TextView.class);
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public final void a() {
|
|
CustomAddressInput customAddressInput = this.e;
|
|
if (customAddressInput == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.e = null;
|
|
customAddressInput.titleLabel = null;
|
|
customAddressInput.mandatorySymbol = null;
|
|
customAddressInput.inputTextField = null;
|
|
customAddressInput.errorInline = null;
|
|
}
|
|
}
|