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.
@MustBeDocumented
1 parent b5640f7 commit 4397084Copy full SHA for 4397084
modules/bcv-gradle-plugin/src/main/kotlin/internal/BCVInternalApi.kt
@@ -1,17 +1,20 @@
1
package dev.adamko.kotlin.binary_compatibility_validator.internal
2
3
+import kotlin.RequiresOptIn.Level.WARNING
4
+import kotlin.annotation.AnnotationRetention.BINARY
5
import kotlin.annotation.AnnotationTarget.*
6
7
8
@RequiresOptIn(
9
"Internal API - may change at any time without notice",
- level = RequiresOptIn.Level.WARNING
10
+ level = WARNING
11
)
-@Retention(AnnotationRetention.BINARY)
12
+@Retention(BINARY)
13
@Target(
14
CLASS,
15
FUNCTION,
16
PROPERTY,
17
CONSTRUCTOR,
18
19
+@MustBeDocumented
20
internal annotation class BCVInternalApi
0 commit comments