()
| 1794 | } |
| 1795 | |
| 1796 | @Override |
| 1797 | public Iterator<Entry<K, Collection<V>>> iterator() { |
| 1798 | return Maps.asMapEntryIterator( |
| 1799 | multimap.keySet(), |
| 1800 | new Function<K, Collection<V>>() { |
| 1801 | @Override |
| 1802 | public Collection<V> apply(K key) { |
| 1803 | return multimap.get(key); |
| 1804 | } |
| 1805 | }); |
| 1806 | } |
| 1807 | |
| 1808 | @Override |
| 1809 | public boolean remove(Object o) { |
nothing calls this directly
no test coverage detected