fix: Make CompatiblePackage.versions a property

This commit is contained in:
oSumAtrIX
2023-09-06 06:12:44 +02:00
parent 4b76d19596
commit 67b7dff67a

View File

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