Skip to content

Commit

Permalink
Add to multiple actions specified check #2866
Browse files Browse the repository at this point in the history
  • Loading branch information
fritschldwg committed Dec 18, 2023
1 parent 83ac997 commit 152578e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class StructureModifier(
var actionCount = 0
actionCount += if (setRoot != null) 1 else 0
actionCount += if (printLevels != null) 1 else 0
actionCount += if (moveFrom != null) 1 else 0
actionCount += if (moveFrom != null || moveTo != null) 1 else 0
actionCount += if (remove.isNotEmpty()) 1 else 0
return actionCount > 1
}
Expand Down

0 comments on commit 152578e

Please sign in to comment.