Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5940 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed May 10, 2009
1 parent 9d1eb99 commit b6ba387
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/de/anomic/kelondro/util/SetTools.java
Expand Up @@ -426,7 +426,7 @@ public static String setToString(final TreeSet<byte[]> set, final char separator
final StringBuilder sb = new StringBuilder(set.size() * 7);
if (i.hasNext()) sb.append(new String(i.next()));
while (i.hasNext()) {
sb.append(separator).append(i.next());
sb.append(separator).append(new String(i.next()));
}
return new String(sb);
}
Expand Down

0 comments on commit b6ba387

Please sign in to comment.