Skip to content
Snippets Groups Projects
Commit 3a2a43a1 authored by Robin Rosenberg's avatar Robin Rosenberg
Browse files

Remove unused parent field in PlotLane

parent 292fe88c
No related branches found
No related tags found
No related merge requests found
......@@ -139,7 +139,6 @@ protected void enter(final int index, final PlotCommit<L> currCommit) {
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.
......@@ -154,7 +153,6 @@ protected void enter(final int index, final PlotCommit<L> currCommit) {
}
currCommit.lane = nextFreeLane();
currCommit.lane.parent = currCommit;
activeLanes.add(currCommit.lane);
int remaining = nChildren;
......
......@@ -49,8 +49,6 @@
* Commits are strung onto a lane. For many UIs a lane represents a column.
*/
public class PlotLane {
PlotCommit parent;
int position;
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment