Remove unused parent field in PlotLane

Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
This commit is contained in:
Robin Rosenberg 2010-06-13 03:13:57 +02:00
parent 292fe88c50
commit 3a2a43a1dc
2 changed files with 0 additions and 4 deletions

View File

@ -139,7 +139,6 @@ protected void enter(final int index, final PlotCommit<L> currCommit) {
rObj.addPassingLane(c.lane); rObj.addPassingLane(c.lane);
} }
currCommit.lane = c.lane; currCommit.lane = c.lane;
currCommit.lane.parent = currCommit;
} else { } else {
// More than one child, or our child is a merge. // More than one child, or our child is a merge.
// Use a different lane. // Use a different lane.
@ -154,7 +153,6 @@ protected void enter(final int index, final PlotCommit<L> currCommit) {
} }
currCommit.lane = nextFreeLane(); currCommit.lane = nextFreeLane();
currCommit.lane.parent = currCommit;
activeLanes.add(currCommit.lane); activeLanes.add(currCommit.lane);
int remaining = nChildren; int remaining = nChildren;

View File

@ -49,8 +49,6 @@
* Commits are strung onto a lane. For many UIs a lane represents a column. * Commits are strung onto a lane. For many UIs a lane represents a column.
*/ */
public class PlotLane { public class PlotLane {
PlotCommit parent;
int position; int position;
/** /**