Skip to content

Commit

Permalink
Merge pull request #14 from fdussert/master
Browse files Browse the repository at this point in the history
  • Loading branch information
hagzag committed Jan 6, 2013
2 parents 0803d14 + edc4ce0 commit de71f22
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -66,7 +66,8 @@ private boolean isUnstable() {
private boolean evaluateResult(Result result) {
List<SubBuild> builders = getBuilders();
for (SubBuild subBuild : builders) {
if (subBuild.getResult().isWorseThan(result)) {
Result buildResult = subBuild.getResult();
if (buildResult != null && buildResult.isWorseThan(result)) {
return true;
}
}
Expand Down

0 comments on commit de71f22

Please sign in to comment.