Skip to content

Commit

Permalink
fix NPE
Browse files Browse the repository at this point in the history
  • Loading branch information
dpolivaev committed Feb 22, 2019
1 parent 9fc305c commit cb1c320
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -288,7 +288,7 @@ else if(indexOfValue != -1){
}
}
}
if (btnDeny.isSelected())
if (newCond != null && btnDeny.isSelected())
return new ConditionNotSatisfiedDecorator(newCond);
else
return newCond;
Expand Down

0 comments on commit cb1c320

Please sign in to comment.