the user list should use case-INsensitive comparison
This commit is contained in:
parent
b437a15e73
commit
50c76b3dc7
|
@ -45,7 +45,7 @@ public class UserListBox implements SideBoxFactory
|
|||
private int m_total_count;
|
||||
private int m_max_count;
|
||||
private int m_anon_count = 0;
|
||||
private TreeSet m_users = new TreeSet();
|
||||
private TreeSet m_users = new TreeSet(String.CASE_INSENSITIVE_ORDER);
|
||||
|
||||
/*====================================================================
|
||||
* Constructor
|
||||
|
|
Loading…
Reference in New Issue
Block a user