(Object key)
| 2745 | } |
| 2746 | |
| 2747 | @Override |
| 2748 | public V remove(Object key) { |
| 2749 | return containsKey(key) ? unfiltered.remove(key) : null; |
| 2750 | } |
| 2751 | |
| 2752 | @Override |
| 2753 | Collection<V> createValues() { |
nothing calls this directly
no test coverage detected