what-the-bank/sources/com/scb/phone/view/custom/easycash/CustomTileToggle_ViewBindin...

40 lines
1.8 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.scb.phone.view.custom.easycash;
import android.view.View;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
import butterknife.Unbinder;
import com.scb.phone.R;
import o.pyT;
/* loaded from: classes5.dex */
public class CustomTileToggle_ViewBinding implements Unbinder {
private CustomTileToggle c;
public CustomTileToggle_ViewBinding(CustomTileToggle customTileToggle, View view) {
this.c = customTileToggle;
customTileToggle.leftTile = (LinearLayout) pyT.e(view, R.id.left_tile, "field 'leftTile'", LinearLayout.class);
customTileToggle.rightTile = (LinearLayout) pyT.e(view, R.id.right_tile, "field 'rightTile'", LinearLayout.class);
customTileToggle.leftTileTitle = (TextView) pyT.e(view, R.id.left_tile_title, "field 'leftTileTitle'", TextView.class);
customTileToggle.leftTileIcon = (ImageView) pyT.e(view, R.id.left_tile_icon, "field 'leftTileIcon'", ImageView.class);
customTileToggle.rightTileTitle = (TextView) pyT.e(view, R.id.right_tile_title, "field 'rightTileTitle'", TextView.class);
customTileToggle.rightTileIcon = (ImageView) pyT.e(view, R.id.right_tile_icon, "field 'rightTileIcon'", ImageView.class);
}
@Override // butterknife.Unbinder
public final void a() {
CustomTileToggle customTileToggle = this.c;
if (customTileToggle == null) {
throw new IllegalStateException("Bindings already cleared.");
}
this.c = null;
customTileToggle.leftTile = null;
customTileToggle.rightTile = null;
customTileToggle.leftTileTitle = null;
customTileToggle.leftTileIcon = null;
customTileToggle.rightTileTitle = null;
customTileToggle.rightTileIcon = null;
}
}