Skip to content

Commit

Permalink
bugfix in entity iterator
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1490 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed Jan 30, 2006
1 parent fa90c3c commit a7f0adf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/de/anomic/plasma/plasmaWordIndexEntity.java
Expand Up @@ -207,7 +207,9 @@ public Iterator elements(boolean up) {
public final class dbenum implements Iterator {
Iterator i;
public dbenum(boolean up) {
try {
if (theIndex == null) {
i = null;
} else try {
i = theIndex.nodeIterator(up, false);
} catch (kelondroException e) {
e.printStackTrace();
Expand Down

0 comments on commit a7f0adf

Please sign in to comment.