(java.lang.Comparable<K> object, K key1, K key2)
| 4385 | } |
| 4386 | |
| 4387 | private int cmp(java.lang.Comparable<K> object, K key1, K key2) { |
| 4388 | return object != null ? object.compareTo(key2) : comparator.compare( |
| 4389 | key1, key2); |
| 4390 | } |
| 4391 | |
| 4392 | /** |
| 4393 | * Maps the specified key to the specified value. |
no test coverage detected