fix: Make CompatiblePackage.versions a property

This commit is contained in:
oSumAtrIX 2023-09-06 06:12:44 +02:00
parent 4b76d19596
commit 67b7dff67a
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -65,7 +65,7 @@ sealed class Patch<out T : Context<*>>(
*/ */
class CompatiblePackage( class CompatiblePackage(
val name: String, val name: String,
versions: Set<String>? = null, val versions: Set<String>? = null,
) )
} }