Skip to content

Commit

Permalink
fix: Make patches selectable by using a mutable collection for the se…
Browse files Browse the repository at this point in the history
…lection option
  • Loading branch information
oSumAtrIX committed Sep 5, 2024
1 parent 3300e6b commit 751fa1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/app/revanced/cli/command/PatchCommand.kt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ internal object PatchCommand : Runnable {
private lateinit var spec: CommandSpec

@ArgGroup(multiplicity = "0..*")
private var selection = emptySet<Selection>()
private var selection = mutableSetOf<Selection>()

internal class Selection {
@ArgGroup(exclusive = false, multiplicity = "1")
Expand Down

0 comments on commit 751fa1d

Please sign in to comment.