Holding tab shows a list of players. But the lowercase names come after the uppercase names. A case insensitive tab list would be more convenient for finding players.
Attachments
Comments 4
Here is a screenshot of the tab list. As you can see, the lowercase names come after the uppercase ones. c's should go after b's regardless of case.
I think it's more intuitive to sort case-insensitively, I've been tripped up numerous times by this.
Technically, adding case-sensitivity is a way of sorting, which can be useful. Strings are case-sensitive by default. It just looks like Jeb forgot to put equalsIgnoreCase(str); and rather he put equals(str);