(@Nullable Object value)
| 560 | } |
| 561 | |
| 562 | @Override |
| 563 | public K remove(@Nullable Object value) { |
| 564 | BiEntry<K, V> entry = seekByValue(value, smearedHash(value)); |
| 565 | if (entry == null) { |
| 566 | return null; |
| 567 | } else { |
| 568 | delete(entry); |
| 569 | entry.prevInKeyInsertionOrder = null; |
| 570 | entry.nextInKeyInsertionOrder = null; |
| 571 | return entry.key; |
| 572 | } |
| 573 | } |
| 574 | |
| 575 | @Override |
| 576 | public BiMap<K, V> inverse() { |
nothing calls this directly
no test coverage detected