提交 d8d53053 编写于 作者: K Kohsuke Kawaguchi

fixed NPE

上级 35fc7a13
......@@ -126,7 +126,7 @@ public abstract class AggregatedTestResultAction extends AbstractTestResultActio
public ChildReport(AbstractBuild<?, ?> child, AbstractTestResultAction result) {
this.child = child;
this.result = result.getResult();
this.result = result!=null ? result.getResult() : null;
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册