提交 ddb0fda2 编写于 作者: K kohsuke

this parameter no longer necessary

git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@13206 71c3de6d-444a-0410-be80-ed276b4c234a
上级 2a094b30
......@@ -1006,14 +1006,22 @@ public abstract class AbstractProject<P extends AbstractProject<P,R>,R extends A
for (Trigger t : triggers)
t.stop();
triggers = buildDescribable(req, Triggers.getApplicableTriggers(this), "trigger");
triggers = buildDescribable(req, Triggers.getApplicableTriggers(this));
for (Trigger t : triggers)
t.start(this,true);
updateTransientActions();
}
protected final <T extends Describable<T>> List<T> buildDescribable(StaplerRequest req, List<? extends Descriptor<T>> descriptors, String prefix)
/**
* @deprecated
* As of 1.261. Use {@link #buildDescribable(StaplerRequest, List)} instead.
*/
protected final <T extends Describable<T>> List<T> buildDescribable(StaplerRequest req, List<? extends Descriptor<T>> descriptors, String prefix) throws FormException, ServletException {
return buildDescribable(req,descriptors);
}
protected final <T extends Describable<T>> List<T> buildDescribable(StaplerRequest req, List<? extends Descriptor<T>> descriptors)
throws FormException, ServletException {
JSONObject data = req.getSubmittedForm();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册