瀏覽代碼

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 年之前
父節點
當前提交
ae79969715
共有 1 個文件被更改,包括 2 次插入1 次删除
  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 查看文件

@@ -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…
取消
儲存