36 lines
1.6 KiB
Java
36 lines
1.6 KiB
Java
|
package com.scb.phone.view.custom;
|
||
|
|
||
|
import android.view.View;
|
||
|
import android.widget.TextView;
|
||
|
import butterknife.Unbinder;
|
||
|
import com.scb.phone.R;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public final class CustomExternalSelector_ViewBinding implements Unbinder {
|
||
|
private CustomExternalSelector d;
|
||
|
|
||
|
public CustomExternalSelector_ViewBinding(CustomExternalSelector customExternalSelector, View view) {
|
||
|
this.d = customExternalSelector;
|
||
|
customExternalSelector.labelTitle = (TextView) pyT.e(view, R.id.tv_title, "field 'labelTitle'", TextView.class);
|
||
|
customExternalSelector.selectedTextView = (TextView) pyT.e(view, R.id.text_view_description, "field 'selectedTextView'", TextView.class);
|
||
|
customExternalSelector.iconArrow = (TextView) pyT.e(view, R.id.image_spinner_arrow, "field 'iconArrow'", TextView.class);
|
||
|
customExternalSelector.container = pyT.a(view, R.id.spinner_container, "field 'container'");
|
||
|
customExternalSelector.mErrorTextView = (TextView) pyT.e(view, R.id.error_text_view, "field 'mErrorTextView'", TextView.class);
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
CustomExternalSelector customExternalSelector = this.d;
|
||
|
if (customExternalSelector == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.d = null;
|
||
|
customExternalSelector.labelTitle = null;
|
||
|
customExternalSelector.selectedTextView = null;
|
||
|
customExternalSelector.iconArrow = null;
|
||
|
customExternalSelector.container = null;
|
||
|
customExternalSelector.mErrorTextView = null;
|
||
|
}
|
||
|
}
|