Skip to content

Commit

Permalink
fix: remove default param from Package.versions
Browse files Browse the repository at this point in the history
Kotlin compiler bug produces invalid bytecode, resulting in an IncompleteAnnotationException at runtime.
  • Loading branch information
Sculas committed Sep 3, 2022
1 parent 44f6a3e commit 4b81318
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -24,5 +24,5 @@ annotation class Compatibility(
@MustBeDocumented
annotation class Package(
val name: String,
val versions: Array<String> = [],
)
val versions: Array<String>,
)

0 comments on commit 4b81318

Please sign in to comment.