(Object o1, Object o2)
| 284 | |
| 285 | private static final class DefaultComparator implements Comparator, Serializable { |
| 286 | public int compare(Object o1, Object o2){ |
| 287 | return Util.compare(o1, o2); |
| 288 | } |
| 289 | |
| 290 | private Object readResolve() throws ObjectStreamException { |
| 291 | // ensures that we aren't hanging onto a new default comparator for every |