From 131dedd4b021fe1c3b0be49ccba4764b325770ea Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Mon, 5 Sep 2022 16:44:35 +0200 Subject: [PATCH] feat: default value for `Package.versions` annotation parameter Reverts 4b813187107e85dc267dbc2d353884b2cc671cc4 --- .../app/revanced/patcher/annotation/CompatibilityAnnotation.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/revanced/patcher/annotation/CompatibilityAnnotation.kt b/src/main/kotlin/app/revanced/patcher/annotation/CompatibilityAnnotation.kt index 86a02fe..1924b62 100644 --- a/src/main/kotlin/app/revanced/patcher/annotation/CompatibilityAnnotation.kt +++ b/src/main/kotlin/app/revanced/patcher/annotation/CompatibilityAnnotation.kt @@ -24,5 +24,5 @@ annotation class Compatibility( @MustBeDocumented annotation class Package( val name: String, - val versions: Array, + val versions: Array = [], )