fixed increment in content iterator

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1413 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 19 years ago
parent 62ab8d18c1
commit a70970f993

@ -1075,6 +1075,7 @@ public class kelondroRecords {
public Object next() { public Object next() {
try { try {
Node n = new Node(pos); Node n = new Node(pos);
pos.index++;
while ((markedDeleted.contains(pos)) && (pos.index < USAGE.allCount())) pos.index++; while ((markedDeleted.contains(pos)) && (pos.index < USAGE.allCount())) pos.index++;
return n.getValues(); return n.getValues();
} catch (IOException e) { } catch (IOException e) {

Loading…
Cancel
Save