Skip to content

Commit

Permalink
JENKINS-32049 ConcurrentModificationException
Browse files Browse the repository at this point in the history
  • Loading branch information
dominiquebrice committed Dec 26, 2015
1 parent f77fa51 commit 1842c5b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -3,4 +3,5 @@ work/
.classpath
.project
.settings/
.DS_Store
.DS_Store
/target
Expand Up @@ -117,7 +117,7 @@ else if (parameter instanceof PredefinedBuildParameters) {
for (Iterator<Object> ite = keysSet.iterator(); ite.hasNext() ;) {
String key = (String)ite.next();
if (!isSupportedLabel(p.getProperty(key))) {
p.remove(key);
ite.remove();
}
}
addTriggeredJobsByPredefinedParameters(triggeredJobsByLabel, p, triggeredJobs, triggeringJob);
Expand Down

0 comments on commit 1842c5b

Please sign in to comment.