Browse Source

Fix NPE in PlotCommitList

Bug: 544513
Change-Id: I2fca766bbdc441a2dca947fba5dde532de7a10fd
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v5.3.0.201903061415-rc1
Matthias Sohn 5 years ago
parent
commit
ae79969715
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      org.eclipse.jgit/src/org/eclipse/jgit/revplot/PlotCommitList.java

+ 2
- 1
org.eclipse.jgit/src/org/eclipse/jgit/revplot/PlotCommitList.java View File

@@ -141,7 +141,8 @@ public class PlotCommitList<L extends PlotLane> extends
final PlotCommit<L> c = currCommit.children[0];
currCommit.lane = c.lane;
Integer len = laneLength.get(currCommit.lane);
len = Integer.valueOf(len.intValue() + 1);
len = len != null ? Integer.valueOf(len.intValue() + 1)
: Integer.valueOf(0);
laneLength.put(currCommit.lane, len);
} else {
// More than one child, or our child is a merge.

Loading…
Cancel
Save