[Bug #1083] Fix bug
The initial points where calculated uncorrectly in backwards scheduling mode. FEA: ItEr74S04BugFixingx
This commit is contained in:
parent
3e740b9e88
commit
ec3d8ba1c6
1 changed files with 2 additions and 1 deletions
|
|
@ -360,7 +360,8 @@ public class GanttDiagramGraph<V, D extends IDependency<V>> implements
|
|||
Collection<? extends V> tasks) {
|
||||
List<V> result = new ArrayList<V>();
|
||||
for (V each : tasks) {
|
||||
if (noVisibleDependencies(graph.incomingEdgesOf(each))) {
|
||||
if (noVisibleDependencies(isScheduleForward() ? graph
|
||||
.incomingEdgesOf(each) : graph.outgoingEdgesOf(each))) {
|
||||
result.add(each);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue