Created
October 11, 2016 14:29
-
-
Save washingtonsoares/4861398bce698d2e007ab5eef931c14e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Collections.sort(savedClientSectors, new Comparator<ClientSector>() { | |
@Override | |
public int compare(ClientSector o1, ClientSector o2) { | |
return o1.getName().compareTo(o2.getName()); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment