31 lines
1.1 KiB
Java
31 lines
1.1 KiB
Java
|
package com.scb.phone.view.custom.common;
|
||
|
|
||
|
import android.view.View;
|
||
|
import android.widget.ImageView;
|
||
|
import android.widget.TextView;
|
||
|
import butterknife.Unbinder;
|
||
|
import com.scb.phone.R;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public final class CustomInfoItemWithImage_ViewBinding implements Unbinder {
|
||
|
private CustomInfoItemWithImage d;
|
||
|
|
||
|
public CustomInfoItemWithImage_ViewBinding(CustomInfoItemWithImage customInfoItemWithImage, View view) {
|
||
|
this.d = customInfoItemWithImage;
|
||
|
customInfoItemWithImage.ivLeftImage = (ImageView) pyT.e(view, R.id.ivLeftImage, "field 'ivLeftImage'", ImageView.class);
|
||
|
customInfoItemWithImage.tvRightText = (TextView) pyT.e(view, R.id.tvRightText, "field 'tvRightText'", TextView.class);
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
CustomInfoItemWithImage customInfoItemWithImage = this.d;
|
||
|
if (customInfoItemWithImage == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.d = null;
|
||
|
customInfoItemWithImage.ivLeftImage = null;
|
||
|
customInfoItemWithImage.tvRightText = null;
|
||
|
}
|
||
|
}
|