Skip to content

Commit

Permalink
don't try to update anything if implementation state deduction is
Browse files Browse the repository at this point in the history
disabled
  • Loading branch information
jochenkemnade committed Mar 19, 2020
1 parent 9d495ca commit a3bdcad
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ public static void updateDependentObjects(CnATreeElement cnAElement) {
if (cnAElement == null) {
return;
}
if (BpRequirement.TYPE_ID.equals(cnAElement.getTypeId())) {
if (BpRequirement.TYPE_ID.equals(cnAElement.getTypeId())
&& DeductionImplementationUtil.isDeductiveImplementationEnabled(cnAElement)) {
updateRequirementImplementationStatus(cnAElement);
}
}
Expand Down

0 comments on commit a3bdcad

Please sign in to comment.