Removed same boundary check

This commit is contained in:
M66B 2021-03-14 19:50:19 +01:00
parent 7140a2deec
commit 47318409ff
1 changed files with 0 additions and 5 deletions

View File

@ -126,11 +126,6 @@ public class BoundaryCallbackMessages extends PagedList.BoundaryCallback<TupleMe
public void onItemAtEndLoaded(@NonNull final TupleMessageEx itemAtEnd) {
Long id = (itemAtEnd == null ? null : itemAtEnd.id); // fall-safe
if (state.end != null && state.end.equals(id)) {
Log.i("Boundary at same end=" + id);
return;
}
Log.i("Boundary at end=" + id);
queue_load(state, id);
}