38 lines
1.9 KiB
Java
38 lines
1.9 KiB
Java
package com.scb.phone.view.custom.item;
|
|
|
|
import android.view.View;
|
|
import android.widget.ImageView;
|
|
import android.widget.TextView;
|
|
import butterknife.Unbinder;
|
|
import com.scb.phone.R;
|
|
import com.scb.phone.view.custom.common.MultiLineNoPaddingTextView;
|
|
import o.pyT;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public class ItemSuccessfulHeaderCustom_ViewBinding implements Unbinder {
|
|
private ItemSuccessfulHeaderCustom d;
|
|
|
|
public ItemSuccessfulHeaderCustom_ViewBinding(ItemSuccessfulHeaderCustom itemSuccessfulHeaderCustom, View view) {
|
|
this.d = itemSuccessfulHeaderCustom;
|
|
itemSuccessfulHeaderCustom.componentTitle = (MultiLineNoPaddingTextView) pyT.e(view, R.id.component_title, "field 'componentTitle'", MultiLineNoPaddingTextView.class);
|
|
itemSuccessfulHeaderCustom.componentSubtitle = (TextView) pyT.e(view, R.id.component_subtitle, "field 'componentSubtitle'", TextView.class);
|
|
itemSuccessfulHeaderCustom.componentExtra = (TextView) pyT.e(view, R.id.component_extra, "field 'componentExtra'", TextView.class);
|
|
itemSuccessfulHeaderCustom.componentMoreExtra = (TextView) pyT.e(view, R.id.component_more_extra, "field 'componentMoreExtra'", TextView.class);
|
|
itemSuccessfulHeaderCustom.componentIcon = (ImageView) pyT.e(view, R.id.component_icon, "field 'componentIcon'", ImageView.class);
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public void a() {
|
|
ItemSuccessfulHeaderCustom itemSuccessfulHeaderCustom = this.d;
|
|
if (itemSuccessfulHeaderCustom == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.d = null;
|
|
itemSuccessfulHeaderCustom.componentTitle = null;
|
|
itemSuccessfulHeaderCustom.componentSubtitle = null;
|
|
itemSuccessfulHeaderCustom.componentExtra = null;
|
|
itemSuccessfulHeaderCustom.componentMoreExtra = null;
|
|
itemSuccessfulHeaderCustom.componentIcon = null;
|
|
}
|
|
}
|