remove log.d call

This commit is contained in:
sk 2023-07-17 22:53:16 +02:00
parent a74c285f77
commit 3f2e6d2be6
1 changed files with 2 additions and 4 deletions

View File

@ -774,12 +774,10 @@ public abstract class BaseStatusListFragment<T extends DisplayItemsParent> exten
@Override @Override
protected void onDataLoaded(List<T> d, boolean more) { protected void onDataLoaded(List<T> d, boolean more) {
if (getContext()==null) return; if(getContext()==null) return;
super.onDataLoaded(d, more); super.onDataLoaded(d, more);
// more available, but the page isn't even full yet? seems wrong, let's load some more // more available, but the page isn't even full yet? seems wrong, let's load some more
if (more && d.size() < itemsPerPage) { if(more && d.size() < itemsPerPage){
Log.d("BaseStatusListFragment", "doing the 'loading more things' thing!!! ipp: "+itemsPerPage+", items size: "+ d.size());
new Exception().printStackTrace();
preloader.onScrolledToLastItem(); preloader.onScrolledToLastItem();
} }
} }