Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2ce9bae8 authored by Dave Burke's avatar Dave Burke Committed by Android Git Automerger
Browse files

am bafc8dcf: am 34bc73df: Merge "Revert "Make implementation of isEmpty...

am bafc8dcf: am 34bc73df: Merge "Revert "Make implementation of isEmpty consistent with implementation of getCount in HeaderListViewAdapter"" into jb-mr2-dev

* commit 'bafc8dcf':
  Revert "Make implementation of isEmpty consistent with implementation of getCount in HeaderListViewAdapter"
parents 95acc52c bafc8dcf
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -79,8 +79,7 @@ public class HeaderViewListAdapter implements WrapperListAdapter, Filterable {
    }

    public boolean isEmpty() {
        return (mAdapter == null || mAdapter.isEmpty())
	        && getFootersCount() + getHeadersCount() == 0;
        return mAdapter == null || mAdapter.isEmpty();
    }

    private boolean areAllListInfosSelectable(ArrayList<ListView.FixedViewInfo> infos) {