(K[] keys)
| 516 | } |
| 517 | |
| 518 | private static <K> void failIfEmpty(K[] keys) { |
| 519 | if (keys.length == 0) throw new IllegalArgumentException("The array of keys to look for should not be empty"); |
| 520 | } |
| 521 | |
| 522 | private static <K, V> void failIfEmpty(MapEntry<? extends K, ? extends V>[] entries) { |
| 523 | if (entries.length == 0) |
no outgoing calls
no test coverage detected