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