提交 62734aed 编写于 作者: K kohsuke

fixed NPE (#594)


git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@3457 71c3de6d-444a-0410-be80-ed276b4c234a
上级 e1a5fcb7
......@@ -62,6 +62,9 @@ public final class MavenModuleSetBuild extends AbstractBuild<MavenModuleSet,Mave
for (List<MavenBuild> list : getModuleBuilds().values())
for (MavenBuild build : list) {
Result br = build.getResult();
if(r==null)
r = br;
else
if(br!=null)
r = r.combine(br);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册