提交 02434ca1 编写于 作者: K kohsuke

avoid calling the deprecated method.

git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@11629 71c3de6d-444a-0410-be80-ed276b4c234a
上级 afd2293e
......@@ -1593,16 +1593,16 @@ public final class Hudson extends View implements ItemGroup<TopLevelItem>, Node,
result &= configureDescriptor(req,json,d);
for( Descriptor<BuildWrapper> d : BuildWrappers.WRAPPERS )
result &= d.configure(req);
result &= configureDescriptor(req,json,d);
for( SCMDescriptor scmd : SCMS.SCMS )
result &= scmd.configure(req);
result &= configureDescriptor(req,json,scmd);
for( TriggerDescriptor d : Triggers.TRIGGERS )
result &= d.configure(req);
result &= configureDescriptor(req,json,d);
for( JobPropertyDescriptor d : Jobs.PROPERTIES )
result &= d.configure(req);
result &= configureDescriptor(req,json,d);
for( JSONObject o : StructuredForm.toList(json,"plugin"))
pluginManager.getPlugin(o.getString("name")).getPlugin().configure(o);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册