(Object a, Object b)
| 207 | } |
| 208 | |
| 209 | int compare(Object a, Object b) { |
| 210 | // pretend we can compare anything |
| 211 | @SuppressWarnings({"rawtypes", "unchecked"}) |
| 212 | Comparator<Object> cmp = (Comparator) comparator(); |
| 213 | return cmp.compare(a, b); |
| 214 | } |
| 215 | |
| 216 | |
| 217 | boolean rangeContains(@Nullable Object o) { |
no test coverage detected