(K key, boolean containedKey, V oldValue, V newValue)
| 146 | } |
| 147 | |
| 148 | private void updateInverseMap(K key, boolean containedKey, V oldValue, V newValue) { |
| 149 | if (containedKey) { |
| 150 | removeFromInverseMap(oldValue); |
| 151 | } |
| 152 | inverse.delegate.put(newValue, key); |
| 153 | } |
| 154 | |
| 155 | @CanIgnoreReturnValue |
| 156 | @Override |
no test coverage detected