use of com.bluestacks.bugzy.data.model.RecentSearch in project bugzy by cpunq.
the class SearchHistoryAdapter method onBindViewHolder.
@Override
public void onBindViewHolder(SearchSuggestionHolder holder, int position) {
RecentSearch search = mSearchSuggestions.get(position);
holder.bindData(search);
}
Aggregations