(Object o1, Object o2)
| 50 | |
| 51 | public static class ToStringComparator implements Comparator<Object> { |
| 52 | public int compare(Object o1, Object o2) { return o1.toString().compareTo(o2.toString()); } |
| 53 | } |
| 54 | } |
nothing calls this directly
no outgoing calls
no test coverage detected