(
TreeMap.Entry<K, V> entry)
| 5451 | } |
| 5452 | |
| 5453 | final AbstractMap.SimpleImmutableEntry<K, V> newImmutableEntry( |
| 5454 | TreeMap.Entry<K, V> entry) { |
| 5455 | return (null == entry) ? null : new SimpleImmutableEntry<K, V>(entry); |
| 5456 | } |
| 5457 | |
| 5458 | @SuppressWarnings("unchecked") |
| 5459 | private static <T> java.lang.Comparable<T> toComparable(T obj) { |
no outgoing calls
no test coverage detected