(@Nullable Object key, @Nullable V value)
| 2706 | } |
| 2707 | |
| 2708 | boolean apply(@Nullable Object key, @Nullable V value) { |
| 2709 | // This method is called only when the key is in the map, implying that |
| 2710 | // key is a K. |
| 2711 | |
| 2712 | @SuppressWarnings("unchecked") |
| 2713 | K k = (K) key; |
| 2714 | return predicate.apply(Maps.immutableEntry(k, value)); |
| 2715 | } |
| 2716 | |
| 2717 | @Override |
| 2718 | public V put(K key, V value) { |
no test coverage detected