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.
1 parent 529e0df commit e44eeddCopy full SHA for e44eedd
plugin/main/src/kotlinx/benchmark/gradle/internal/KotlinxBenchmarkPluginInternalApi.kt
@@ -1,5 +1,7 @@
1
package kotlinx.benchmark.gradle.internal
2
3
+import kotlin.RequiresOptIn.Level.WARNING
4
+
5
/**
6
* Marks declarations that are **internal** to the Kotlinx Benchmark project.
7
*
@@ -11,6 +13,6 @@ package kotlinx.benchmark.gradle.internal
11
13
* Please remove references to internal API to supported stable references.
12
14
* If you still require access to these APIs, please raise an issue.
15
*/
-@RequiresOptIn
16
+@RequiresOptIn(level = WARNING)
17
@MustBeDocumented
18
annotation class KotlinxBenchmarkPluginInternalApi
0 commit comments