Skip to content

Commit

Permalink
Count variable should allowed to be zero
Browse files Browse the repository at this point in the history
  • Loading branch information
cornflakes committed Jun 6, 2024
1 parent acd334d commit 63d3a21
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public void reset() {
}

private void checkForCompletion() {
if (count <= 0) {
if (count < 0) {
if (isComplete == false && completion != null) {
completion.onGroupCompletion();
}
Expand Down

0 comments on commit 63d3a21

Please sign in to comment.