// Generated code from Butter Knife. Do not modify!
package in.example.android.iv.viewholders;

import android.support.annotation.CallSuper;
import android.support.annotation.UiThread;
import android.view.View;
import android.widget.TextView;
import butterknife.Unbinder;
import butterknife.internal.Utils;
import in.example.android.iv.R;
import java.lang.IllegalStateException;
import java.lang.Override;

public class ContactsViewHolder_ViewBinding implements Unbinder {
  private ContactsViewHolder target;

  @UiThread
  public ContactsViewHolder_ViewBinding(ContactsViewHolder target, View source) {
    this.target = target;

    target.contacts_name = Utils.findRequiredViewAsType(source, R.id.contacts_name, "field 'contacts_name'", TextView.class);
    target.contacts_position = Utils.findRequiredViewAsType(source, R.id.contacts_position, "field 'contacts_position'", TextView.class);
    target.contacts_phone = Utils.findRequiredViewAsType(source, R.id.phone_icon, "field 'contacts_phone'", TextView.class);
  }

  @Override
  @CallSuper
  public void unbind() {
    ContactsViewHolder target = this.target;
    if (target == null) throw new IllegalStateException("Bindings already cleared.");
    this.target = null;

    target.contacts_name = null;
    target.contacts_position = null;
    target.contacts_phone = null;
  }
}
