- Fixed getShortColorsString dealing with more than one entry.

This commit is contained in:
Sloth
2013-04-20 06:41:04 +00:00
parent 9611a40e1d
commit 609164d7c5

View File

@@ -74,7 +74,7 @@ public final class CardUtil {
public static String getShortColorsString(final Iterable<String> colors) {
StringBuilder colorDesc = new StringBuilder();
for (final String col : colors) {
colorDesc.append(getShortColor(col));
colorDesc.append(getShortColor(col) + " ");
}
return colorDesc.toString();
}