(
TreeMap.Entry<K, V> entry)
| 5384 | } |
| 5385 | |
| 5386 | final AbstractMap.SimpleImmutableEntry<K, V> newImmutableEntry( |
| 5387 | TreeMap.Entry<K, V> entry) { |
| 5388 | return (null == entry) ? null : new SimpleImmutableEntry<K, V>(entry); |
| 5389 | } |
| 5390 | |
| 5391 | @SuppressWarnings("unchecked") |
| 5392 | private static <T> java.lang.Comparable<T> toComparable(T obj) { |
no outgoing calls
no test coverage detected