Skip to content

Commit

Permalink
fix(engine): minimize the changes within the ticket
Browse files Browse the repository at this point in the history
Related with #CAM-8072
  • Loading branch information
sdorokhova committed Aug 7, 2017
1 parent fdc63bf commit fe5a99d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ public void execute(PvmExecutionImpl execution) {
LegacyBehavior.destroyConcurrentScope(execution);
}
else {
execution.destroy();
execution.remove();
propagatingExecution = execution.getParent();
LOG.debugDestroyScope(execution, propagatingExecution);
execution.destroy();
propagatingExecution.setActivity(execution.getActivity());
propagatingExecution.setTransition(execution.getTransition());
propagatingExecution.setActive(true);
LOG.debugDestroyScope(execution, propagatingExecution);
execution.remove();
}
}

Expand Down

0 comments on commit fe5a99d

Please sign in to comment.