(Map<Long, T> map, T object)
| 246 | } |
| 247 | |
| 248 | private static <T extends InternalInstrumented<?>> void remove(Map<Long, T> map, T object) { |
| 249 | T prev = map.remove(id(object)); |
| 250 | assert prev != null; |
| 251 | } |
| 252 | |
| 253 | private static <T extends InternalInstrumented<?>> boolean contains( |
| 254 | Map<Long, T> map, InternalLogId id) { |
no test coverage detected