Skip to content

Commit 4397084

Browse files
committed
tidy up BCVInternalApi (add @MustBeDocumented)
1 parent b5640f7 commit 4397084

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
package dev.adamko.kotlin.binary_compatibility_validator.internal
22

3+
import kotlin.RequiresOptIn.Level.WARNING
4+
import kotlin.annotation.AnnotationRetention.BINARY
35
import kotlin.annotation.AnnotationTarget.*
46

57

68
@RequiresOptIn(
79
"Internal API - may change at any time without notice",
8-
level = RequiresOptIn.Level.WARNING
10+
level = WARNING
911
)
10-
@Retention(AnnotationRetention.BINARY)
12+
@Retention(BINARY)
1113
@Target(
1214
CLASS,
1315
FUNCTION,
1416
PROPERTY,
1517
CONSTRUCTOR,
1618
)
19+
@MustBeDocumented
1720
internal annotation class BCVInternalApi

0 commit comments

Comments
 (0)