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