From 9ecc17baef0dfca6f16a1b22070d6b78d42b2a7a Mon Sep 17 00:00:00 2001 From: lulabad Date: Sun, 17 Feb 2008 13:03:40 +0000 Subject: [PATCH] fixed double Blog entrys git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4492 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/data/blogBoard.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/de/anomic/data/blogBoard.java b/source/de/anomic/data/blogBoard.java index 959fbf350..627349c1f 100644 --- a/source/de/anomic/data/blogBoard.java +++ b/source/de/anomic/data/blogBoard.java @@ -261,7 +261,7 @@ public class blogBoard { } public Iterator getBlogIterator(boolean priv){ TreeSet set = new TreeSet(new BlogComparator(true)); - Iterator iterator = blogIterator(priv); + Iterator iterator = blogIterator(true); BlogEntry blogEntry; while(iterator.hasNext()){ blogEntry=(BlogEntry)iterator.next(); @@ -285,7 +285,6 @@ public class blogBoard { Iterator blogIter; blogBoard.BlogEntry nextEntry; public BlogIterator(boolean up) throws IOException { - //flushBookmarkCache(); //XXX: this will cost performance this.blogIter = blogBoard.this.database.keys(up, false); this.nextEntry = null; }