Removed considerations of item ID and position from tag making method

This commit is contained in:
Phillip Hsu
2016-09-07 02:51:05 -07:00
parent 17ad81d55e
commit e1d858a06a
4 changed files with 3 additions and 10 deletions
@@ -198,6 +198,6 @@ public class TimerViewHolder extends BaseViewHolder<Timer> {
}
private String makeTag(@IdRes int viewId) {
return FragmentTagUtils.makeTag(TimerViewHolder.class, viewId, getItemId());
return FragmentTagUtils.makeTag(TimerViewHolder.class, viewId);
}
}