(T o1, T o2)
| 196 | private static final long serialVersionUID = 7207038068494060240L; |
| 197 | |
| 198 | @SuppressWarnings("unchecked") |
| 199 | public int compare(T o1, T o2) { |
| 200 | Comparable<T> c2 = (Comparable<T>) o2; |
| 201 | return c2.compareTo(o1); |
| 202 | } |
| 203 | |
| 204 | // private Object readResolve() throws ObjectStreamException { |
| 205 | // return INSTANCE; |