37 lines
1.7 KiB
Java
37 lines
1.7 KiB
Java
|
package com.scb.phone.view.custom.accountsummary;
|
||
|
|
||
|
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 ImageAndTextAdBannerView_ViewBinding implements Unbinder {
|
||
|
private ImageAndTextAdBannerView b;
|
||
|
|
||
|
public ImageAndTextAdBannerView_ViewBinding(ImageAndTextAdBannerView imageAndTextAdBannerView, View view) {
|
||
|
this.b = imageAndTextAdBannerView;
|
||
|
imageAndTextAdBannerView.bannerImage = (ImageView) pyT.e(view, R.id.banner_image, "field 'bannerImage'", ImageView.class);
|
||
|
imageAndTextAdBannerView.closeButton = (ImageView) pyT.e(view, R.id.close_button, "field 'closeButton'", ImageView.class);
|
||
|
imageAndTextAdBannerView.linkText = (TextView) pyT.e(view, R.id.link_text, "field 'linkText'", TextView.class);
|
||
|
imageAndTextAdBannerView.titleText = (TextView) pyT.e(view, R.id.title_text, "field 'titleText'", TextView.class);
|
||
|
imageAndTextAdBannerView.descriptionText = (TextView) pyT.e(view, R.id.description_text, "field 'descriptionText'", TextView.class);
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
ImageAndTextAdBannerView imageAndTextAdBannerView = this.b;
|
||
|
if (imageAndTextAdBannerView == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.b = null;
|
||
|
imageAndTextAdBannerView.bannerImage = null;
|
||
|
imageAndTextAdBannerView.closeButton = null;
|
||
|
imageAndTextAdBannerView.linkText = null;
|
||
|
imageAndTextAdBannerView.titleText = null;
|
||
|
imageAndTextAdBannerView.descriptionText = null;
|
||
|
}
|
||
|
}
|