Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
François Dussert committed Jan 2, 2013
1 parent 0803d14 commit edc4ce0
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 edc4ce0

Please sign in to comment.