refactor: formatting in line properly in ContactUtilities.kt

This commit is contained in:
jubb 2021-02-25 13:27:45 +11:00
parent 9a33fe8883
commit 9d55d842d2
1 changed files with 6 additions and 6 deletions

View File

@ -12,12 +12,12 @@ object ContactUtilities {
val cursor = threadDatabase.conversationList
val result = mutableSetOf<Recipient>()
threadDatabase.readerFor(cursor).use { reader ->
while (reader.next != null) {
val thread = reader.current
val recipient = thread.recipient
result.add(recipient)
while (reader.next != null) {
val thread = reader.current
val recipient = thread.recipient
result.add(recipient)
}
}
return result
}
return result
}
}