30 lines
1.1 KiB
Java
30 lines
1.1 KiB
Java
|
package com.scb.phone.view.custom;
|
||
|
|
||
|
import android.view.View;
|
||
|
import android.widget.ImageView;
|
||
|
import butterknife.Unbinder;
|
||
|
import com.scb.phone.R;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public final class CustomProfileImageView_ViewBinding implements Unbinder {
|
||
|
private CustomProfileImageView e;
|
||
|
|
||
|
public CustomProfileImageView_ViewBinding(CustomProfileImageView customProfileImageView, View view) {
|
||
|
this.e = customProfileImageView;
|
||
|
customProfileImageView.ivAvatar = (ImageView) pyT.e(view, R.id.iv_avatar, "field 'ivAvatar'", ImageView.class);
|
||
|
customProfileImageView.vBorder = (CustomDoubleCircleBorderView) pyT.e(view, R.id.v_border, "field 'vBorder'", CustomDoubleCircleBorderView.class);
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
CustomProfileImageView customProfileImageView = this.e;
|
||
|
if (customProfileImageView == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.e = null;
|
||
|
customProfileImageView.ivAvatar = null;
|
||
|
customProfileImageView.vBorder = null;
|
||
|
}
|
||
|
}
|