Skip to content

Commit 2d97ea5

Browse files
committed
Remove RequiresOptIn.
1 parent b98b2ee commit 2d97ea5

File tree

1 file changed

+1
-10
lines changed
  • jvm/selfie-lib/src/commonMain/kotlin/com/diffplug/selfie

1 file changed

+1
-10
lines changed

jvm/selfie-lib/src/commonMain/kotlin/com/diffplug/selfie/Selfie.kt

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,5 @@ object Selfie {
9494
* control whether the VCR is writing or reading. If the caller lives in a package called
9595
* `selfie.*` it will keep looking up the stack trace until a caller is not inside `selfie.*`.
9696
*/
97-
@JvmStatic
98-
@ExperimentalSelfieVcr
99-
fun vcrTestLocator(sub: String = "") = VcrSelfie.TestLocator(sub, deferredDiskStorage)
97+
@JvmStatic fun vcrTestLocator(sub: String = "") = VcrSelfie.TestLocator(sub, deferredDiskStorage)
10098
}
101-
102-
@RequiresOptIn(
103-
level = RequiresOptIn.Level.WARNING,
104-
message = "This API is in beta and may change in the future.")
105-
@Retention(AnnotationRetention.BINARY)
106-
@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY)
107-
annotation class ExperimentalSelfieVcr

0 commit comments

Comments
 (0)