(@Nullable Object key)
| 834 | } |
| 835 | |
| 836 | @Override |
| 837 | public V get(@Nullable Object key) { |
| 838 | if (Collections2.safeContains(backingSet(), key)) { |
| 839 | @SuppressWarnings("unchecked") // unsafe, but Javadoc warns about it |
| 840 | K k = (K) key; |
| 841 | return function.apply(k); |
| 842 | } else { |
| 843 | return null; |
| 844 | } |
| 845 | } |
| 846 | |
| 847 | @Override |
| 848 | public V remove(@Nullable Object key) { |
nothing calls this directly
no test coverage detected