Skip to content

Commit e44eedd

Browse files
committed
change KotlinxBenchmarkPluginInternalApi level from ERROR (default) to WARNING
1 parent 529e0df commit e44eedd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

plugin/main/src/kotlinx/benchmark/gradle/internal/KotlinxBenchmarkPluginInternalApi.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
package kotlinx.benchmark.gradle.internal
22

3+
import kotlin.RequiresOptIn.Level.WARNING
4+
35
/**
46
* Marks declarations that are **internal** to the Kotlinx Benchmark project.
57
*
@@ -11,6 +13,6 @@ package kotlinx.benchmark.gradle.internal
1113
* Please remove references to internal API to supported stable references.
1214
* If you still require access to these APIs, please raise an issue.
1315
*/
14-
@RequiresOptIn
16+
@RequiresOptIn(level = WARNING)
1517
@MustBeDocumented
1618
annotation class KotlinxBenchmarkPluginInternalApi

0 commit comments

Comments
 (0)