mirror of
				https://github.com/bspeice/UNCCGameDay
				synced 2025-10-31 17:30:36 -04:00 
			
		
		
		
	just added .toLowerCase() for more accurate ordering of attendees
This commit is contained in:
		| @ -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); | ||||||
| 					} | 					} | ||||||
| 				}); | 				}); | ||||||
|  | |||||||
		Reference in New Issue
	
	Block a user
	 agk512
					agk512