Checks the sorted flag and sorts the rows if necessary. Should be called by any iteration method. Since 2.0
()
| 385 | * Since 2.0 |
| 386 | */ |
| 387 | private void checkRowOrder() { |
| 388 | if (!sorted) { |
| 389 | Collections.sort(rows, new RowSeq.RowSeqComparator()); |
| 390 | sorted = true; |
| 391 | } |
| 392 | } |
| 393 | |
| 394 | /** Package private iterator method to access it as a Span.Iterator. */ |
| 395 | Span.Iterator spanIterator() { |
no outgoing calls
no test coverage detected