(Object o)
| 1806 | } |
| 1807 | |
| 1808 | @Override |
| 1809 | public boolean remove(Object o) { |
| 1810 | if (!contains(o)) { |
| 1811 | return false; |
| 1812 | } |
| 1813 | Map.Entry<?, ?> entry = (Map.Entry<?, ?>) o; |
| 1814 | removeValuesForKey(entry.getKey()); |
| 1815 | return true; |
| 1816 | } |
| 1817 | } |
| 1818 | |
| 1819 | @SuppressWarnings("unchecked") |
nothing calls this directly
no test coverage detected