We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0a2432 commit b1b6712Copy full SHA for b1b6712
src/main/java/org/jenkinsci/plugins/workflow/libs/LibraryCachingConfiguration.java
@@ -101,8 +101,8 @@ public Boolean isIncluded(String version) {
101
return false;
102
}
103
for (String it : getIncludedVersions()) {
104
- // confirm that the excluded versions aren't null or empty
105
- // 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
106
// anywhere in the string.
107
if (StringUtils.isNotBlank(it) && version.contains(it)){
108
return true;
0 commit comments