We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
@OptIn
1 parent 6d3031f commit 1c0d990Copy full SHA for 1c0d990
plugins/commands/downloader/src/main/kotlin/DownloadCommand.kt
@@ -56,7 +56,6 @@ import java.io.File
56
import kotlin.time.measureTime
57
58
import kotlinx.coroutines.Dispatchers
59
-import kotlinx.coroutines.ExperimentalCoroutinesApi
60
import kotlinx.coroutines.async
61
import kotlinx.coroutines.awaitAll
62
import kotlinx.coroutines.launch
@@ -379,7 +378,6 @@ class DownloadCommand(descriptor: PluginDescriptor = DownloadCommandFactory.desc
379
378
380
launch { progress.execute() }
381
382
- @OptIn(ExperimentalCoroutinesApi::class)
383
withContext(Dispatchers.IO.limitedParallelism(parallelDownloads)) {
384
packageDownloadDirs.entries.mapIndexed { index, (pkg, dir) ->
385
async {
0 commit comments