提交 3a6682f2 编写于 作者: K Kohsuke Kawaguchi

fixed NPE

上级 c9ccc671
......@@ -691,7 +691,7 @@ public abstract class AbstractProject<P extends AbstractProject<P,R>,R extends A
protected List<Action> createTransientActions() {
Vector<Action> ta = new Vector<Action>();
for (JobProperty<? super P> p : properties)
for (JobProperty<? super P> p : Util.fixNull(properties))
ta.addAll(p.getJobActions((P)this));
for (TransientProjectActionFactory tpaf : TransientProjectActionFactory.all())
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册