Guest User

Untitled

a guest
Mar 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. if (subbedChannelsList.size() > 0){
  2. Collections.sort(subbedChannelsList, new Comparator<YouTubeChannel>() {
  3. @Override
  4. public int compare(YouTubeChannel channel, YouTubeChannel t1) {
  5. return channel.getTitle().compareTo(t1.getTitle());
  6. }
  7. });
  8. }
Add Comment
Please, Sign In to add comment