package com.ubt.jimu.community.view; import android.view.View; import android.widget.EditText; import android.widget.ImageView; import android.widget.TextView; import butterknife.Unbinder; import butterknife.internal.Utils; import com.ubt.jimu.R; /* loaded from: classes.dex */ public class CommentDialog_ViewBinding implements Unbinder { private CommentDialog b; public CommentDialog_ViewBinding(CommentDialog commentDialog, View view) { this.b = commentDialog; commentDialog.cancel = (ImageView) Utils.b(view, R.id.cancel, "field 'cancel'", ImageView.class); commentDialog.titleTextView = (TextView) Utils.b(view, R.id.titleTextView, "field 'titleTextView'", TextView.class); commentDialog.commit = (ImageView) Utils.b(view, R.id.commit, "field 'commit'", ImageView.class); commentDialog.editComment = (EditText) Utils.b(view, R.id.edit_comment, "field 'editComment'", EditText.class); commentDialog.textCount = (TextView) Utils.b(view, R.id.text_count, "field 'textCount'", TextView.class); } @Override // butterknife.Unbinder public void unbind() { CommentDialog commentDialog = this.b; if (commentDialog == null) { throw new IllegalStateException("Bindings already cleared."); } this.b = null; commentDialog.cancel = null; commentDialog.titleTextView = null; commentDialog.commit = null; commentDialog.editComment = null; commentDialog.textCount = null; } }