28 lines
832 B
Java
28 lines
832 B
Java
|
package com.scb.phone.view.custom.item;
|
||
|
|
||
|
import android.view.View;
|
||
|
import android.widget.TextView;
|
||
|
import butterknife.Unbinder;
|
||
|
import com.scb.phone.R;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public class ItemTitleCustom_ViewBinding implements Unbinder {
|
||
|
private ItemTitleCustom c;
|
||
|
|
||
|
public ItemTitleCustom_ViewBinding(ItemTitleCustom itemTitleCustom, View view) {
|
||
|
this.c = itemTitleCustom;
|
||
|
itemTitleCustom.title = (TextView) pyT.e(view, R.id.tv_title, "field 'title'", TextView.class);
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
ItemTitleCustom itemTitleCustom = this.c;
|
||
|
if (itemTitleCustom == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.c = null;
|
||
|
itemTitleCustom.title = null;
|
||
|
}
|
||
|
}
|