(Object o)
| 2766 | } |
| 2767 | |
| 2768 | @Override |
| 2769 | public boolean remove(Object o) { |
| 2770 | return Iterables.removeFirstMatching( |
| 2771 | unfiltered.entrySet(), |
| 2772 | Predicates.<Entry<K, V>>and(predicate, Maps.<V>valuePredicateOnEntries(equalTo(o)))) != null; |
| 2773 | } |
| 2774 | |
| 2775 | private boolean removeIf(Predicate<? super V> valuePredicate) { |
| 2776 | return Iterables.removeIf( |
nothing calls this directly
no test coverage detected