683684685686687688689
private void findNextIterator() { if (srcit.hasNext()) { DataSource src = srcit.next(); recit = src.getRecords(); } else recit = new DefaultRecordIterator(Collections.EMPTY_SET.iterator()); }
37383940414243
this.records = records; } @Override public RecordIterator getRecords() { return new DefaultRecordIterator(records.iterator()); }