Area code is not displayed in To: field, while sending SMS from call log

Bug 7614149

The extra space after the comma was screwing up the Chips parser and causing
the comma delimeter to be parsed as part of the number.

Change-Id: I6239f6b1e45075b6faf9e7f0323d00945b23ce73
diff --git a/src/com/android/mms/ui/RecipientsEditor.java b/src/com/android/mms/ui/RecipientsEditor.java
index 0baeff8..7cbb066 100644
--- a/src/com/android/mms/ui/RecipientsEditor.java
+++ b/src/com/android/mms/ui/RecipientsEditor.java
@@ -274,7 +274,7 @@
             for (Contact c : list) {
                 // Calling setText to set the recipients won't create chips,
                 // but calling append() will.
-                append(contactToToken(c) + ", ");
+                append(contactToToken(c) + ",");
             }
         }
     }