ItEr48S04ValidacionEProbasFuncionaisItEr47S04: [Bug #316] Fixing bug.
Tracking position of the top tasks descendants too.
This commit is contained in:
parent
80aba02c53
commit
85ef189c18
1 changed files with 4 additions and 0 deletions
|
|
@ -255,6 +255,10 @@ public class FunctionalityExposedForExtensions<T> implements IContext<T> {
|
|||
private void updateTimeTracker(List<Task> tasksCreated) {
|
||||
for (Task task : tasksCreated) {
|
||||
timeTracker.trackPosition(task);
|
||||
if (task.isContainer()) {
|
||||
TaskContainer container = (TaskContainer) task;
|
||||
updateTimeTracker(container.getTasks());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue