|
|
@ -59,6 +59,8 @@ public class PlotCommit<L extends PlotLane> extends RevCommit { |
|
|
|
|
|
|
|
|
|
|
|
static final PlotLane[] NO_LANES = {}; |
|
|
|
static final PlotLane[] NO_LANES = {}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static final Ref[] NO_REFS = {}; |
|
|
|
|
|
|
|
|
|
|
|
PlotLane[] passingLanes; |
|
|
|
PlotLane[] passingLanes; |
|
|
|
|
|
|
|
|
|
|
|
PlotLane lane; |
|
|
|
PlotLane lane; |
|
|
@ -77,6 +79,7 @@ public class PlotCommit<L extends PlotLane> extends RevCommit { |
|
|
|
super(id); |
|
|
|
super(id); |
|
|
|
passingLanes = NO_LANES; |
|
|
|
passingLanes = NO_LANES; |
|
|
|
children = NO_CHILDREN; |
|
|
|
children = NO_CHILDREN; |
|
|
|
|
|
|
|
refs = NO_REFS; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void addPassingLane(final PlotLane c) { |
|
|
|
void addPassingLane(final PlotLane c) { |
|
|
|