Skip to content

Commit

Permalink
Updated comments for include versions
Browse files Browse the repository at this point in the history
  • Loading branch information
KINAXIS\agharat committed Sep 28, 2022
1 parent e0a2432 commit b1b6712
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ public Boolean isIncluded(String version) {
return false;
}
for (String it : getIncludedVersions()) {
// confirm that the excluded versions aren't null or empty
// and if the version contains the exclusion thus it can be
// works on empty or null included versions
// and if the version contains the inclusion thus it can be
// anywhere in the string.
if (StringUtils.isNotBlank(it) && version.contains(it)){
return true;
Expand Down

0 comments on commit b1b6712

Please sign in to comment.