Sorry if this question has ever been asked. Regard...
# detekt
t
Sorry if this question has ever been asked. Regarding https://github.com/arturbosch/detekt/pull/2174, how can
CoroutineScope(Dispatchers.Default).launch { delay(1_000L) }
resolve the drawback of
GlobalScope.launch { delay(1_000L) }
?