just added .toLowerCase() for more accurate ordering of attendees

master
agk512 2013-12-09 03:51:17 -05:00
parent 83abdf4fd0
commit 85d33578a7
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ public class Search extends MenuActivity {
@Override @Override
public int compare(Attendee a1, Attendee a2) { public int compare(Attendee a1, Attendee a2) {
String compareName = a1.getLastName().toLowerCase(); String compareName = a1.getLastName().toLowerCase();
String thisName = a2.getLastName().toLowerCase; String thisName = a2.getLastName().toLowerCase();
return compareName.compareTo(thisName); return compareName.compareTo(thisName);
} }
}); });