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

35 lines
1.4 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.ImageView;
import android.widget.TextView;
import butterknife.Unbinder;
import com.scb.phone.R;
import o.pyT;
/* loaded from: classes5.dex */
public class MultilineDataComponent_ViewBinding implements Unbinder {
private MultilineDataComponent e;
public MultilineDataComponent_ViewBinding(MultilineDataComponent multilineDataComponent, View view) {
this.e = multilineDataComponent;
multilineDataComponent.title = (TextView) pyT.e(view, R.id.tv_title, "field 'title'", TextView.class);
multilineDataComponent.icon = (ImageView) pyT.e(view, R.id.iv_icon, "field 'icon'", ImageView.class);
multilineDataComponent.firstLine = (TextView) pyT.e(view, R.id.tv_first_line, "field 'firstLine'", TextView.class);
multilineDataComponent.secondLine = (TextView) pyT.e(view, R.id.tv_second_line, "field 'secondLine'", TextView.class);
}
@Override // butterknife.Unbinder
public final void a() {
MultilineDataComponent multilineDataComponent = this.e;
if (multilineDataComponent == null) {
throw new IllegalStateException("Bindings already cleared.");
}
this.e = null;
multilineDataComponent.title = null;
multilineDataComponent.icon = null;
multilineDataComponent.firstLine = null;
multilineDataComponent.secondLine = null;
}
}