small fix for count: overXX includes the count

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@7915 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 14 years ago
parent 6db8921a0f
commit cf8e3b0df8

@ -64,12 +64,12 @@ public class termlist_p {
e = i.next();
termnumber++;
count = e.getScore();
if (count > 1000) over1000++;
if (count > 10000) over10000++;
if (count > 100000) over100000++;
if (count > 1000000) over1000000++;
if (count > 10000000) over10000000++;
if (count > 100000000) over100000000++;
if (count >= 1000) over1000++;
if (count >= 10000) over10000++;
if (count >= 100000) over100000++;
if (count >= 1000000) over1000000++;
if (count >= 10000000) over10000000++;
if (count >= 100000000) over100000000++;
if (count > maxcount) {
maxcount = count;
maxterm = e.getObject();

Loading…
Cancel
Save