fix: remove default param from Package.versions

Kotlin compiler bug produces invalid bytecode, resulting in an IncompleteAnnotationException at runtime.
This commit is contained in:
Sculas
2022-09-03 22:52:49 +02:00
committed by GitHub
parent 44f6a3ebc5
commit 4b81318710

View File

@ -24,5 +24,5 @@ annotation class Compatibility(
@MustBeDocumented @MustBeDocumented
annotation class Package( annotation class Package(
val name: String, val name: String,
val versions: Array<String> = [], val versions: Array<String>,
) )