(Comparable<K> object, K key1, K key2)
| 1314 | } |
| 1315 | |
| 1316 | private int cmp(Comparable<K> object, K key1, K key2) { |
| 1317 | return object != null ? |
| 1318 | object.compareTo(key2) : comparator.compare(key1, key2); |
| 1319 | } |
| 1320 | |
| 1321 | /** |
| 1322 | * Returns a sorted map over a range of this sorted map with all keys that |
no test coverage detected