提交 0a0b81d3 编写于 作者: K kohsuke

cut and paste mistake

git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@25772 71c3de6d-444a-0410-be80-ed276b4c234a
上级 91f80263
......@@ -238,7 +238,7 @@ public class MatrixProject extends AbstractProject<MatrixProject,MatrixBuild> im
for (BuildWrapper step : buildWrappers)
transientActions.addAll(step.getProjectActions(this));
for (Trigger trigger : triggers)
transientActions.addAll(trigger.getProjectActions(this));
transientActions.addAll(trigger.getProjectActions());
}
}
......
......@@ -208,7 +208,7 @@ public abstract class Project<P extends Project<P,B>,B extends Build<P,B>>
for (BuildWrapper step : getBuildWrappers().values())
transientActions.addAll(step.getProjectActions(this));
for (Trigger trigger : getTriggers().values())
transientActions.addAll(trigger.getProjectActions(this));
transientActions.addAll(trigger.getProjectActions());
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册