*) correct merging of indexes when enumerating downward

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1361 6c8d7289-2bf4-0310-a012-ef5d649a1542
This commit is contained in:
hermens 2006-01-17 11:44:55 +00:00
parent b1b8ba719e
commit 84fce71d11

View File

@ -110,7 +110,7 @@ public class kelondroMergeIterator implements Iterator {
nexta();
nextb();
return s;
} else if ((up) && (c < 0)) {
} else if (((up) && (c < 0)) || ((!(up)) && (c > 0))) {
s = na;
nexta();
return s;