HumanLearning2021 / HumanLearningApp

GNU General Public License v3.0
3 stars 2 forks source link

make downloadDatabase a simple suspend function #196

Closed bbjubjub2494 closed 3 years ago

bbjubjub2494 commented 3 years ago
    suspend fun downloadDatabase(databaseName: String): DatabaseManagement =
        withContext(Dispatchers.IO) {

This is more idiomatic, the Deferred seems unnecessary.

_Originally posted by @lourkeur in https://github.com/HumanLearning2021/HumanLearningApp/pull/186#discussion_r635927199_

bbjubjub2494 commented 3 years ago

ended up fixed in #186