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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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