30 lines
1.0 KiB
Java
30 lines
1.0 KiB
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 ItemSimpleCustom_ViewBinding implements Unbinder {
|
||
|
private ItemSimpleCustom b;
|
||
|
|
||
|
public ItemSimpleCustom_ViewBinding(ItemSimpleCustom itemSimpleCustom, View view) {
|
||
|
this.b = itemSimpleCustom;
|
||
|
itemSimpleCustom.componentLabel = (TextView) pyT.e(view, R.id.label_left, "field 'componentLabel'", TextView.class);
|
||
|
itemSimpleCustom.componentExtra = (TextView) pyT.e(view, R.id.label_right, "field 'componentExtra'", TextView.class);
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public void a() {
|
||
|
ItemSimpleCustom itemSimpleCustom = this.b;
|
||
|
if (itemSimpleCustom == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.b = null;
|
||
|
itemSimpleCustom.componentLabel = null;
|
||
|
itemSimpleCustom.componentExtra = null;
|
||
|
}
|
||
|
}
|