Rename method in order to be less confusing
FEA: ItEr61S08TimeUnitConfigurablePlanning
This commit is contained in:
parent
9d072fda1f
commit
55e6cc458d
1 changed files with 3 additions and 3 deletions
|
|
@ -883,7 +883,7 @@ public class GanttDiagramGraph<V, D> {
|
|||
break;
|
||||
}
|
||||
}
|
||||
recalculationToAdd.fromParent(current);
|
||||
recalculationToAdd.comesFromPredecessor(current);
|
||||
result.addAll(getParentsRecalculations(
|
||||
parentRecalculationsAlreadyDone, each));
|
||||
result.add(recalculationToAdd);
|
||||
|
|
@ -972,8 +972,8 @@ public class GanttDiagramGraph<V, D> {
|
|||
couldHaveBeenModifiedBeforehand = true;
|
||||
}
|
||||
|
||||
public void fromParent(Recalculation parent) {
|
||||
recalculationsCouldAffectThis.add(parent);
|
||||
public void comesFromPredecessor(Recalculation predecessor) {
|
||||
recalculationsCouldAffectThis.add(predecessor);
|
||||
}
|
||||
|
||||
boolean doRecalculation() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue