Skip to content

Commit

Permalink
Trivial change
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Mar 1, 2024
1 parent 93c5450 commit b34037f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public boolean inputFileTreeChanged(List<String> added, List<String> removed) {
throw new MojoException("Error while storing the mojo status", e);
}

return (added.size() > 0 || removed.size() > 0);
return added.size() + removed.size() > 0;
}

/**
Expand Down

0 comments on commit b34037f

Please sign in to comment.