fork-5.53.8
Moxie Marlinspike 2013-05-16 13:18:06 -07:00
rodzic be34f30719
commit e5f634ba45
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -54,6 +54,10 @@ public class RecipientFactory {
public static Recipients getRecipientsFromString(Context context, String rawText, boolean asynchronous)
throws RecipientFormattingException
{
if (rawText == null) {
throw new RecipientFormattingException("Null recipient string specified");
}
List<Recipient> results = new LinkedList<Recipient>();
StringTokenizer tokenizer = new StringTokenizer(rawText, ",");