151152153154155156157158159
@Override public RowCursor sort() { try { loadTree(); } catch (IOException e) { throw new MergeSortIOException(e); } return cursor(); }
581582583584585586587588589
nextKey = skipDuplicates(key); } row = createRow(key); } } catch(IterableSorterException e) { throw new MergeSortIOException(e.getMessage()); } return row; }