Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
rObj.addPassingLane(c.lane);
}
currCommit.lane = c.lane;
- currCommit.lane.parent = currCommit;
} else {
// More than one child, or our child is a merge.
// Use a different lane.
}
currCommit.lane = nextFreeLane();
- currCommit.lane.parent = currCommit;
activeLanes.add(currCommit.lane);
int remaining = nChildren;
* Commits are strung onto a lane. For many UIs a lane represents a column.
*/
public class PlotLane {
- PlotCommit parent;
-
int position;
/**