src/share/classes/sun/tools/jconsole/inspector/TableSorter.java

Print this page

        

*** 92,102 **** } @SuppressWarnings("unchecked") private int compare(Object o1, Object o2) { // take care of the case where both o1 & o2 are null. Needed to keep ! // the method symetric. Without this quickSort gives surprising results. if (o1 == o2) return 0; if (o1==null) return 1; if (o2==null) --- 92,102 ---- } @SuppressWarnings("unchecked") private int compare(Object o1, Object o2) { // take care of the case where both o1 & o2 are null. Needed to keep ! // the method symmetric. Without this quickSort gives surprising results. if (o1 == o2) return 0; if (o1==null) return 1; if (o2==null)