*) correct merging of indexes when enumerating downward

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1361 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
hermens 19 years ago
parent b1b8ba719e
commit 84fce71d11

@ -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;

Loading…
Cancel
Save