()
| 60 | } |
| 61 | |
| 62 | private TreeRangeMap() { |
| 63 | this.entriesByLowerBound = Maps.newTreeMap(); |
| 64 | } |
| 65 | |
| 66 | private static final class RangeMapEntry<K extends Comparable, V> extends AbstractMapEntry<Range<K>, V> { |
| 67 | private final Range<K> range; |
nothing calls this directly
no test coverage detected