fix for [B@...

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5941 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
borg-0300 16 years ago
parent b6ba387e01
commit 21930d05ed

@ -1,10 +1,14 @@
// kelondroMSetTools.java
// kelondroMSetTools.java
// -------------------------------------
// (C) by Michael Peter Christen; mc@yacy.net
// first published on http://www.anomic.de
// Frankfurt, Germany, 2004
// last major change: 28.12.2004
//
// $LastChangedDate$
// $LastChangedRevision$
// $LastChangedBy$
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
@ -420,7 +424,7 @@ public class SetTools {
}
return list;
}
public static String setToString(final TreeSet<byte[]> set, final char separator) {
final Iterator<byte[]> i = set.iterator();
final StringBuilder sb = new StringBuilder(set.size() * 7);
@ -428,7 +432,7 @@ public class SetTools {
while (i.hasNext()) {
sb.append(separator).append(new String(i.next()));
}
return new String(sb);
return sb.toString();
}
public static String setToString(final Set<String> set, final char separator) {
final Iterator<String> i = set.iterator();
@ -437,9 +441,9 @@ public class SetTools {
while (i.hasNext()) {
sb.append(separator).append(i.next());
}
return new String(sb);
return sb.toString();
}
// ------------------------------------------------------------------------------------------------

Loading…
Cancel
Save