removing a debug log

This commit is contained in:
tibbi 2020-07-12 16:06:31 +02:00
parent 3d7142fb5c
commit 6f87c1c443
2 changed files with 1 additions and 2 deletions

View file

@ -7,7 +7,7 @@ buildscript {
propMinSdkVersion = 21
propTargetSdkVersion = propCompileSdkVersion
propVersionCode = 1
propVersionName = '5.29.16'
propVersionName = '5.29.17'
kotlin_version = '1.3.72'
}

View file

@ -141,7 +141,6 @@ class SimpleContactsHelper(val context: Context) {
if (contacts.firstOrNull { it.rawId == rawId } == null) {
contacts.add(SimpleContact(rawId, contactId, "", "", ArrayList()))
}
mydebug("number $phoneNumber, $rawId, $contactId")
contacts.firstOrNull { it.rawId == rawId }?.phoneNumbers?.add(phoneNumber)
}
return contacts