(K[] keys)
| 530 | } |
| 531 | |
| 532 | private static <K> void failIfNull(K[] keys) { |
| 533 | if (keys == null) throw new NullPointerException("The array of keys to look for should not be null"); |
| 534 | } |
| 535 | |
| 536 | private static <K, V> void failIfNull(MapEntry<? extends K, ? extends V>[] entries) { |
| 537 | if (entries == null) throw new NullPointerException("The array of entries to look for should not be null"); |
no outgoing calls
no test coverage detected