fixed another break continue bug

This commit is contained in:
iNPUTmice 2014-12-20 12:52:45 +01:00
parent 88f43643bf
commit 6b047bed97
1 changed files with 2 additions and 3 deletions

View File

@ -865,10 +865,9 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
try {
jid = Jid.fromString(phoneContact.getString("jid"));
} catch (final InvalidJidException e) {
break;
continue;
}
final Contact contact = account.getRoster()
.getContact(jid);
final Contact contact = account.getRoster().getContact(jid);
String systemAccount = phoneContact.getInt("phoneid")
+ "#"
+ phoneContact.getString("lookup");