1
0
mirror of https://github.com/etesync/android synced 2024-11-21 15:38:10 +00:00
This commit is contained in:
Tom Hacohen 2019-01-06 17:55:08 +00:00
parent aee9eed43c
commit fee8237eb5

View File

@ -194,23 +194,6 @@ class LocalGroup : AndroidGroup, LocalAddress {
fileName = uid
}
/**
* Marks all members of the current group as dirty.
*/
fun markMembersDirty() {
val batch = BatchOperation(addressBook.provider!!)
for (member in getMembers())
batch.enqueue(BatchOperation.Operation(
ContentProviderOperation.newUpdate(addressBook.syncAdapterURI(ContentUris.withAppendedId(RawContacts.CONTENT_URI, member)))
.withValue(RawContacts.DIRTY, 1)
.withYieldAllowed(true)
))
batch.commit()
}
override fun resetDeleted() {
val values = ContentValues(1)
values.put(Groups.DELETED, 0)