38 lines
1.5 KiB
Java
38 lines
1.5 KiB
Java
package com.scb.phone.view.custom.transferandpay;
|
|
|
|
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 CustomNoteItem_ViewBinding implements Unbinder {
|
|
private CustomNoteItem b;
|
|
|
|
public CustomNoteItem_ViewBinding(CustomNoteItem customNoteItem, View view) {
|
|
this.b = customNoteItem;
|
|
customNoteItem.titleTextView = (TextView) pyT.e(view, R.id.title_text_view, "field 'titleTextView'", TextView.class);
|
|
customNoteItem.descriptionTextView = (TextView) pyT.e(view, R.id.description_text_view, "field 'descriptionTextView'", TextView.class);
|
|
customNoteItem.divider = pyT.a(view, R.id.divider, "field 'divider'");
|
|
customNoteItem.topSpace = pyT.a(view, R.id.sp_space_top, "field 'topSpace'");
|
|
customNoteItem.bottomSpace = pyT.a(view, R.id.sp_space_bottom, "field 'bottomSpace'");
|
|
customNoteItem.dividerSpace = pyT.a(view, R.id.divider_space, "field 'dividerSpace'");
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public final void a() {
|
|
CustomNoteItem customNoteItem = this.b;
|
|
if (customNoteItem == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.b = null;
|
|
customNoteItem.titleTextView = null;
|
|
customNoteItem.descriptionTextView = null;
|
|
customNoteItem.divider = null;
|
|
customNoteItem.topSpace = null;
|
|
customNoteItem.bottomSpace = null;
|
|
customNoteItem.dividerSpace = null;
|
|
}
|
|
}
|