31 lines
1.2 KiB
Java
31 lines
1.2 KiB
Java
package com.scb.phone.view.custom.additionaldocument;
|
|
|
|
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 final class DocumentUploadedCustomView_ViewBinding implements Unbinder {
|
|
private DocumentUploadedCustomView c;
|
|
|
|
public DocumentUploadedCustomView_ViewBinding(DocumentUploadedCustomView documentUploadedCustomView, View view) {
|
|
this.c = documentUploadedCustomView;
|
|
documentUploadedCustomView.deleteIcon = (ImageView) pyT.e(view, R.id.iv_delete_button, "field 'deleteIcon'", ImageView.class);
|
|
documentUploadedCustomView.name = (TextView) pyT.e(view, R.id.tv_document_name, "field 'name'", TextView.class);
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public final void a() {
|
|
DocumentUploadedCustomView documentUploadedCustomView = this.c;
|
|
if (documentUploadedCustomView == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.c = null;
|
|
documentUploadedCustomView.deleteIcon = null;
|
|
documentUploadedCustomView.name = null;
|
|
}
|
|
}
|