tweak toString(map)

git-svn-id: https://svn.apache.org/repos/asf/cassandra/branches/cassandra-0.7@1095151 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jonathan Ellis 2011-04-19 18:07:03 +00:00
parent a3ab11865b
commit 211e2b1cd5
1 changed files with 1 additions and 1 deletions

View File

@ -575,7 +575,7 @@ public class FBUtilities
public static String toString(Map<?,?> map)
{
Joiner.MapJoiner joiner = Joiner.on(",").withKeyValueSeparator(":");
Joiner.MapJoiner joiner = Joiner.on(", ").withKeyValueSeparator(":");
return joiner.join(map);
}