Skip to content

Commit

Permalink
npe fix in operation result
Browse files Browse the repository at this point in the history
(cherry picked from commit 919c2c7)
  • Loading branch information
1azyman committed May 29, 2018
1 parent e714d33 commit 9bed5af
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -547,6 +547,10 @@ public void computeStatus() {
boolean allNotApplicable = true;
String newMessage = null;
for (OperationResult sub : getSubresults()) {
if (sub == null) {
continue;
}

if (sub.getStatus() != OperationResultStatus.NOT_APPLICABLE) {
allNotApplicable = false;
}
Expand Down

0 comments on commit 9bed5af

Please sign in to comment.