1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-02-07 18:50:11 -05:00

Add a space between recipients when doing toString().

This commit is contained in:
Andrew Chen 2010-12-25 01:36:48 +00:00
parent 77c01c65dd
commit dc5616c4b6

View File

@ -207,7 +207,7 @@ public class Address
sb.append(addresses[i].toString()); sb.append(addresses[i].toString());
if (i < addresses.length - 1) if (i < addresses.length - 1)
{ {
sb.append(','); sb.append(", ");
} }
} }
return sb.toString(); return sb.toString();