Bladeren bron

[error prone] fix ReferenceEquality warning in CommitGraphPane#authorFor

Change-Id: I4d620ca65f7cd85863fe8b7182b01d262fbe3504
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v5.4.1.201908211225-r
Matthias Sohn 4 jaren geleden
bovenliggende
commit
66cb2d9db4
1 gewijzigde bestanden met toevoegingen van 2 en 1 verwijderingen
  1. 2
    1
      org.eclipse.jgit.ui/src/org/eclipse/jgit/awtui/CommitGraphPane.java

+ 2
- 1
org.eclipse.jgit.ui/src/org/eclipse/jgit/awtui/CommitGraphPane.java Bestand weergeven

@@ -64,6 +64,7 @@ import org.eclipse.jgit.awtui.SwingCommitList.SwingLane;
import org.eclipse.jgit.lib.PersonIdent;
import org.eclipse.jgit.revplot.PlotCommit;
import org.eclipse.jgit.revplot.PlotCommitList;
import org.eclipse.jgit.util.References;

/**
* Draws a commit graph in a JTable.
@@ -176,7 +177,7 @@ public class CommitGraphPane extends JTable {
}

PersonIdent authorFor(PlotCommit<SwingLane> c) {
if (c != lastCommit) {
if (!References.isSameObject(c, lastCommit)) {
lastCommit = c;
lastAuthor = c.getAuthorIdent();
}

Laden…
Annuleren
Opslaan