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

34 lines
1.3 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
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 CustomInfoArrow_ViewBinding implements Unbinder {
private CustomInfoArrow b;
public CustomInfoArrow_ViewBinding(CustomInfoArrow customInfoArrow, View view) {
this.b = customInfoArrow;
customInfoArrow.titleTextView = (TextView) pyT.e(view, R.id.title, "field 'titleTextView'", TextView.class);
customInfoArrow.infoTextView = (TextView) pyT.e(view, R.id.subtitle, "field 'infoTextView'", TextView.class);
customInfoArrow.descriptionTextView = (TextView) pyT.e(view, R.id.description, "field 'descriptionTextView'", TextView.class);
customInfoArrow.divider = pyT.a(view, R.id.divider, "field 'divider'");
}
@Override // butterknife.Unbinder
public final void a() {
CustomInfoArrow customInfoArrow = this.b;
if (customInfoArrow == null) {
throw new IllegalStateException("Bindings already cleared.");
}
this.b = null;
customInfoArrow.titleTextView = null;
customInfoArrow.infoTextView = null;
customInfoArrow.descriptionTextView = null;
customInfoArrow.divider = null;
}
}