removing a debug log
This commit is contained in:
parent
3d7142fb5c
commit
6f87c1c443
2 changed files with 1 additions and 2 deletions
|
@ -7,7 +7,7 @@ buildscript {
|
||||||
propMinSdkVersion = 21
|
propMinSdkVersion = 21
|
||||||
propTargetSdkVersion = propCompileSdkVersion
|
propTargetSdkVersion = propCompileSdkVersion
|
||||||
propVersionCode = 1
|
propVersionCode = 1
|
||||||
propVersionName = '5.29.16'
|
propVersionName = '5.29.17'
|
||||||
kotlin_version = '1.3.72'
|
kotlin_version = '1.3.72'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -141,7 +141,6 @@ class SimpleContactsHelper(val context: Context) {
|
||||||
if (contacts.firstOrNull { it.rawId == rawId } == null) {
|
if (contacts.firstOrNull { it.rawId == rawId } == null) {
|
||||||
contacts.add(SimpleContact(rawId, contactId, "", "", ArrayList()))
|
contacts.add(SimpleContact(rawId, contactId, "", "", ArrayList()))
|
||||||
}
|
}
|
||||||
mydebug("number $phoneNumber, $rawId, $contactId")
|
|
||||||
contacts.firstOrNull { it.rawId == rawId }?.phoneNumbers?.add(phoneNumber)
|
contacts.firstOrNull { it.rawId == rawId }?.phoneNumbers?.add(phoneNumber)
|
||||||
}
|
}
|
||||||
return contacts
|
return contacts
|
||||||
|
|
Loading…
Reference in a new issue