Method
createSegment
(
int initialCapacity, long maxSegmentWeight, StatsCounter statsCounter)
Source from the content-addressed store, hash-verified
| 1881 | } |
| 1882 | |
| 1883 | Segment<K, V> createSegment( |
| 1884 | int initialCapacity, long maxSegmentWeight, StatsCounter statsCounter) { |
| 1885 | return new Segment<K, V>(this, initialCapacity, maxSegmentWeight, statsCounter); |
| 1886 | } |
| 1887 | |
| 1888 | /** |
| 1889 | * Gets the value from an entry. Returns null if the entry is invalid, partially-collected, |
Tested by
no test coverage detected