/**
  * the onBindViewHolder is managed by the FastAdapter so forward this correctly
  *
  * @param holder
  * @param position
  * @param payloads
  */
 @Override
 public void onBindViewHolder(RecyclerView.ViewHolder holder, int position, List payloads) {
   mFastAdapter.onBindViewHolder(holder, position, payloads);
 }
 /**
  * the onBindViewHolder is managed by the FastAdapter so forward this correctly
  *
  * @param holder
  * @param position
  */
 @Override
 public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
   mFastAdapter.onBindViewHolder(holder, position);
 }