Method
AbstractMapIterator
(TreeMap<K, V> map, Node<K, V> startNode, int startOffset)
Source from the content-addressed store, hash-verified
| 175 | int lastOffset; |
| 176 | |
| 177 | AbstractMapIterator(TreeMap<K, V> map, Node<K, V> startNode, int startOffset) { |
| 178 | backingMap = map; |
| 179 | expectedModCount = map.modCount; |
| 180 | node = startNode; |
| 181 | offset = startOffset; |
| 182 | } |
| 183 | |
| 184 | AbstractMapIterator(TreeMap<K, V> map, Node<K, V> startNode) { |
| 185 | this(map, startNode, startNode != null ? |
Callers
nothing calls this directly
Tested by
no test coverage detected