what-the-bank/sources/com/scb/phone/view/custom/common/FullScreenProgressDialog_Vi...

32 lines
1.3 KiB
Java

package com.scb.phone.view.custom.common;
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 FullScreenProgressDialog_ViewBinding implements Unbinder {
private FullScreenProgressDialog c;
public FullScreenProgressDialog_ViewBinding(FullScreenProgressDialog fullScreenProgressDialog, View view) {
this.c = fullScreenProgressDialog;
fullScreenProgressDialog.animationView = (CustomViewProgressAnimationFull) pyT.a(view, R.id.animation_view, "field 'animationView'", CustomViewProgressAnimationFull.class);
fullScreenProgressDialog.title = (TextView) pyT.e(view, R.id.title_text_view, "field 'title'", TextView.class);
fullScreenProgressDialog.description = (TextView) pyT.e(view, R.id.description_text_view, "field 'description'", TextView.class);
}
@Override // butterknife.Unbinder
public final void a() {
FullScreenProgressDialog fullScreenProgressDialog = this.c;
if (fullScreenProgressDialog == null) {
throw new IllegalStateException("Bindings already cleared.");
}
this.c = null;
fullScreenProgressDialog.animationView = null;
fullScreenProgressDialog.title = null;
fullScreenProgressDialog.description = null;
}
}