fix(core): remove unused DispatcherProvider#unconfined

This commit is contained in:
Harsh Shandilya 2023-07-19 18:47:18 +05:30
parent cb4c85b41c
commit 5870af4017

View file

@ -23,8 +23,6 @@ interface DispatcherProvider {
fun io(): CoroutineDispatcher = Dispatchers.IO
fun unconfined(): CoroutineDispatcher = Dispatchers.Unconfined
fun database(): CoroutineDispatcher = Dispatchers.IO.limitedParallelism(1)
}