Skip to content

Commit 5520b65

Browse files
committed
Remove unused experimental annotations from the test module
1 parent be4416c commit 5520b65

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

kotlinx-coroutines-test/build.gradle.kts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
11
/*
22
* Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
33
*/
4-
import java.net.URL
54

65
val experimentalAnnotations = listOf(
7-
"kotlin.Experimental",
8-
"kotlin.experimental.ExperimentalTypeInference",
9-
"kotlin.ExperimentalMultiplatform",
106
"kotlinx.coroutines.ExperimentalCoroutinesApi",
11-
"kotlinx.coroutines.ObsoleteCoroutinesApi",
12-
"kotlinx.coroutines.InternalCoroutinesApi",
13-
"kotlinx.coroutines.FlowPreview"
7+
"kotlinx.coroutines.InternalCoroutinesApi"
148
)
159

1610
kotlin {
@@ -24,7 +18,6 @@ kotlin {
2418
resources.srcDir("$platform/test-resources")
2519
}
2620
languageSettings {
27-
progressiveMode = true
2821
experimentalAnnotations.forEach { useExperimentalAnnotation(it) }
2922
}
3023
}

0 commit comments

Comments
 (0)