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