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