sockeqwe / mosby

A Model-View-Presenter / Model-View-Intent library for modern Android apps
http://hannesdorfmann.com/mosby/
Apache License 2.0
5.49k stars 841 forks source link

Mail Sample Bug: Null pointer exception in SearchResultAdapter in function getLastMailInList() when items list size is 0. #259

Open nikhilmaurya10 opened 7 years ago

nikhilmaurya10 commented 7 years ago
public Mail getLastMailInList() {
    return items == null ? null : items.get(items.size() - 1);
  }