From 22b9d03bbf40c1e2c1a5c81edeb46943a399cee0 Mon Sep 17 00:00:00 2001 From: hermens Date: Fri, 31 Mar 2006 09:52:55 +0000 Subject: [PATCH] Correcting remaining time issue in getContainers git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1984 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/plasma/plasmaWordIndex.java | 1 + 1 file changed, 1 insertion(+) diff --git a/source/de/anomic/plasma/plasmaWordIndex.java b/source/de/anomic/plasma/plasmaWordIndex.java index 456ab49ea..95de9da6b 100644 --- a/source/de/anomic/plasma/plasmaWordIndex.java +++ b/source/de/anomic/plasma/plasmaWordIndex.java @@ -307,6 +307,7 @@ public final class plasmaWordIndex { // check time remaining = maxTime - (System.currentTimeMillis() - start); //if ((maxTime > 0) && (remaining <= 0)) break; + if ((maxTime >= 0) && (remaining <= 0)) remaining = 100; // get next hash: singleHash = (String) i.next();