Fix bug with paired list incorrectly adding to the specified position.

This bug led to incorrect refreshing of the timeline
This commit is contained in:
Ivan Kupalov 2017-07-14 06:51:03 +03:00
parent 38db48c7cb
commit c6aad085a9
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ public final class PairedList<T, V> extends AbstractList<T> {
@Override
public void add(int index, T element) {
synced.add(index, mapper.apply(element));
main.add(element);
main.add(index, element);
}
@Override