Remove forgotten debug logs

This commit is contained in:
Sylvain Berfini 2012-10-10 16:26:27 +02:00
parent 3258c9f2ee
commit fecf74ea74

View file

@ -1065,10 +1065,8 @@ public class LinphoneActivity extends FragmentActivity implements OnClickListene
}
for (int i = 0; i < contactCursor.getCount(); i++) {
Contact contact = Compatibility.getContact(getContentResolver(), contactCursor, i);
Log.e("Contact ID = " + contact.getID());
for (Contact c : sipContactList) {
if (c.getID().equals(contact.getID())) {
Log.e("Match found : Temp ID = " + c.getID());
contact = c;
break;
}