Skip to content

Commit

Permalink
added missing flush statement
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2786 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed Oct 16, 2006
1 parent 688cbfb commit 14490f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/de/anomic/kelondro/kelondroRowBufferedSet.java
Expand Up @@ -174,7 +174,8 @@ public kelondroRow row() {
return store.row();
}

public Iterator rows(boolean up, boolean rotating, byte[] firstKey) {
public synchronized Iterator rows(boolean up, boolean rotating, byte[] firstKey) {
flush();
return store.rows(up, rotating, firstKey);
}
}

0 comments on commit 14490f0

Please sign in to comment.