(java.lang.Comparable<K> object, K key1, K key2)
| 4401 | } |
| 4402 | |
| 4403 | private int cmp(java.lang.Comparable<K> object, K key1, K key2) { |
| 4404 | return object != null ? object.compareTo(key2) : comparator.compare( |
| 4405 | key1, key2); |
| 4406 | } |
| 4407 | |
| 4408 | /// Maps the specified key to the specified value. |
| 4409 | /// |
no test coverage detected