calls the removeKey method and returns removed object
(long p_76159_1_)
| 178 | * calls the removeKey method and returns removed object |
| 179 | */ |
| 180 | public V remove(long p_76159_1_) |
| 181 | { |
| 182 | LongHashMap.Entry<V> entry = this.removeKey(p_76159_1_); |
| 183 | return entry == null ? null : entry.value; |
| 184 | } |
| 185 | |
| 186 | final LongHashMap.Entry<V> removeKey(long p_76152_1_) |
| 187 | { |
no test coverage detected