(@Nullable Entry<K, ? extends V> entry)
| 3408 | } |
| 3409 | |
| 3410 | private static <K extends @Nullable Object, V extends @Nullable Object> |
| 3411 | @Nullable Entry<K, V> unmodifiableOrNull(@Nullable Entry<K, ? extends V> entry) { |
| 3412 | return (entry == null) ? null : unmodifiableEntry(entry); |
| 3413 | } |
| 3414 | |
| 3415 | @GwtIncompatible // NavigableMap |
| 3416 | private static final class UnmodifiableNavigableMap< |
no test coverage detected