45 lines
2.5 KiB
Java
45 lines
2.5 KiB
Java
package com.scb.phone.view.custom.transferandpay;
|
|
|
|
import android.view.View;
|
|
import android.widget.FrameLayout;
|
|
import android.widget.LinearLayout;
|
|
import android.widget.TextView;
|
|
import butterknife.Unbinder;
|
|
import com.scb.phone.R;
|
|
import com.scb.phone.view.custom.ImageTextView;
|
|
import o.pyT;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public class CustomTransferAndPaySource_ViewBinding implements Unbinder {
|
|
private CustomTransferAndPaySource b;
|
|
|
|
public CustomTransferAndPaySource_ViewBinding(CustomTransferAndPaySource customTransferAndPaySource, View view) {
|
|
this.b = customTransferAndPaySource;
|
|
customTransferAndPaySource.mSourceLinearLayout = (LinearLayout) pyT.e(view, R.id.ll_source, "field 'mSourceLinearLayout'", LinearLayout.class);
|
|
customTransferAndPaySource.mSourceNameTextView = (ImageTextView) pyT.e(view, R.id.source_name_text_view, "field 'mSourceNameTextView'", ImageTextView.class);
|
|
customTransferAndPaySource.tvSourceAccount = (TextView) pyT.e(view, R.id.source_account_text_view, "field 'tvSourceAccount'", TextView.class);
|
|
customTransferAndPaySource.tvSourceAccountBalance = (TextView) pyT.e(view, R.id.source_account_balance_text_view, "field 'tvSourceAccountBalance'", TextView.class);
|
|
customTransferAndPaySource.mSourceTextView = (TextView) pyT.e(view, R.id.source_label, "field 'mSourceTextView'", TextView.class);
|
|
customTransferAndPaySource.fmSourceInfo = (FrameLayout) pyT.e(view, R.id.source_info_layout, "field 'fmSourceInfo'", FrameLayout.class);
|
|
customTransferAndPaySource.divider = pyT.a(view, R.id.divider, "field 'divider'");
|
|
customTransferAndPaySource.mSourceDividerSpace = pyT.a(view, R.id.source_divider_space, "field 'mSourceDividerSpace'");
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public final void a() {
|
|
CustomTransferAndPaySource customTransferAndPaySource = this.b;
|
|
if (customTransferAndPaySource == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.b = null;
|
|
customTransferAndPaySource.mSourceLinearLayout = null;
|
|
customTransferAndPaySource.mSourceNameTextView = null;
|
|
customTransferAndPaySource.tvSourceAccount = null;
|
|
customTransferAndPaySource.tvSourceAccountBalance = null;
|
|
customTransferAndPaySource.mSourceTextView = null;
|
|
customTransferAndPaySource.fmSourceInfo = null;
|
|
customTransferAndPaySource.divider = null;
|
|
customTransferAndPaySource.mSourceDividerSpace = null;
|
|
}
|
|
}
|