Skip to content

Commit

Permalink
Triggers is not a field anymore, it's a method now, following fix for…
Browse files Browse the repository at this point in the history
… issue JENKINS-18589
  • Loading branch information
johnou committed Jul 17, 2013
1 parent 4593101 commit 9c967e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/ivy/AbstractIvyProject.java
Expand Up @@ -59,7 +59,7 @@ protected List<Action> createTransientActions() {
addTransientActionsFromBuild(getLastBuild(), r, added);
addTransientActionsFromBuild(getLastSuccessfulBuild(), r, added);

for (Trigger<?> trigger : triggers)
for (Trigger<?> trigger : getTriggers().values())
r.addAll(trigger.getProjectActions());

return r;
Expand Down

0 comments on commit 9c967e3

Please sign in to comment.