Work on using branch per project

This commit is contained in:
Nicolas Héron 2020-04-14 08:56:20 +02:00
commit b37a988a03
42 changed files with 121 additions and 70 deletions

View file

@ -44,6 +44,10 @@ public class DeleteFactEventStrategy implements AbstractMemoryEventHandlerStrate
} else { // inserted from a rule that is not in a ruleflow/process
existingInSessionRuleExecution = sessionContext.getRuleExecution();
if (existingInSessionRuleExecution==null){
existingInSessionRuleExecution = new RuleExecution();
sessionContext.setRuleExecution(existingInSessionRuleExecution);
}
existingInSessionRuleExecution.getThenFacts().add(fact);
}