173174175176177178179180181182183184185186
* @return */ private List<Slice> sliceBySegment(Block[] blocks) { //Sort the blocks by their segment id SegmentIndex idx = new SegmentIndex(); for (Block b : blocks) { idx.put(b); } return idx.getSlices(); }