When populating the graph with dependencies don't enforce contraints yet

The constraints are asked to be enforced later.

FEA: ItEr74S04BugFixing
This commit is contained in:
Óscar González Fernández 2011-05-13 21:16:21 +02:00
parent a78a86083c
commit fd2c2ca718

View file

@ -260,7 +260,7 @@ public class FunctionalityExposedForExtensions<T> implements IContext<T> {
}
for (Dependency dependency : DomainDependency.toDependencies(mapper,
totalDependencies)) {
this.diagramGraph.add(dependency);
this.diagramGraph.addWithoutEnforcingConstraints(dependency);
}
this.diagramGraph.enforceAllRestrictions();
this.planner.addTasks(position, tasksCreated);