ItEr58S14RecalculosConexionEscenariosItEr57S15: [Bug #465] Fix bug.
The condition was wrong. When the tasks are not preexistent the tasks cannot be removed
This commit is contained in:
parent
f3bd2501e5
commit
2d1a5682f0
1 changed files with 1 additions and 1 deletions
|
|
@ -144,7 +144,7 @@ public class TaskSource extends BaseEntity {
|
|||
@Override
|
||||
public TaskElement apply(ITaskSourceDAO taskSourceDAO,
|
||||
boolean preexistent) {
|
||||
if (!preexistent) {
|
||||
if (preexistent) {
|
||||
for (TaskSource each : toBeRemovedFromBottomToTop) {
|
||||
remove(taskSourceDAO, each);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue