mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-75622 Threads in debugger are sorted case-sensitively
This commit is contained in:
@@ -191,7 +191,7 @@ public class ThreadDumpPanel extends JPanel {
|
||||
final int s1 = getThreadStateCode(o1).ordinal();
|
||||
final int s2 = getThreadStateCode(o2).ordinal();
|
||||
if (s1 == s2) {
|
||||
return o1.getName().compareTo(o2.getName());
|
||||
return o1.getName().compareToIgnoreCase(o2.getName());
|
||||
} else {
|
||||
return s1 < s2 ? - 1 : 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user