From a70970f993d2f0845eb4cb5009fe3fc458837a94 Mon Sep 17 00:00:00 2001 From: orbiter Date: Mon, 23 Jan 2006 12:11:32 +0000 Subject: [PATCH] fixed increment in content iterator git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1413 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/kelondro/kelondroRecords.java | 1 + 1 file changed, 1 insertion(+) diff --git a/source/de/anomic/kelondro/kelondroRecords.java b/source/de/anomic/kelondro/kelondroRecords.java index bfad1bc30..0a91be231 100644 --- a/source/de/anomic/kelondro/kelondroRecords.java +++ b/source/de/anomic/kelondro/kelondroRecords.java @@ -1075,6 +1075,7 @@ public class kelondroRecords { public Object next() { try { Node n = new Node(pos); + pos.index++; while ((markedDeleted.contains(pos)) && (pos.index < USAGE.allCount())) pos.index++; return n.getValues(); } catch (IOException e) {