(@Nullable Object value)
| 545 | } |
| 546 | |
| 547 | @Override |
| 548 | public K remove(@Nullable Object value) { |
| 549 | BiEntry<K, V> entry = seekByValue(value, smearedHash(value)); |
| 550 | if (entry == null) { |
| 551 | return null; |
| 552 | } else { |
| 553 | delete(entry); |
| 554 | entry.prevInKeyInsertionOrder = null; |
| 555 | entry.nextInKeyInsertionOrder = null; |
| 556 | return entry.key; |
| 557 | } |
| 558 | } |
| 559 | |
| 560 | @Override |
| 561 | public BiMap<K, V> inverse() { |
nothing calls this directly
no test coverage detected