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

master
agk512 2013-12-09 03:50:21 -05:00
parent b558d94fdd
commit 83abdf4fd0
1 changed files with 3 additions and 3 deletions

View File

@ -62,8 +62,8 @@ public class Search extends MenuActivity {
Collections.sort(rsvpList, new Comparator<Attendee>() {
@Override
public int compare(Attendee a1, Attendee a2) {
String compareName = a1.getLastName();
String thisName = a2.getLastName();
String compareName = a1.getLastName().toLowerCase();
String thisName = a2.getLastName().toLowerCase;
return compareName.compareTo(thisName);
}
});
@ -83,4 +83,4 @@ public class Search extends MenuActivity {
}
}
}
}