Skip to content

Commit

Permalink
[FIXED JENKINS-20719] Fixed projects.size to projects.size() in groov…
Browse files Browse the repository at this point in the history
…y script. This caused exception with IBM Java 6.
  • Loading branch information
ikedam committed Dec 12, 2013
1 parent 36a75b7 commit b0e531f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -27,7 +27,7 @@ if(builds.size() > 0) {
}

def projects = my.triggeredProjects
if (projects.size > 0) {
if (projects.size() > 0) {
h2("Subprojects triggered but not blocked for");

ul(style:"list-style-type: none;") {
Expand Down

1 comment on commit b0e531f

@ikedam
Copy link
Member Author

@ikedam ikedam commented on b0e531f Dec 12, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As this is easy to fix, I committed this before the next release by @wolfs .

Please sign in to comment.