Fix comparison using reference equality instead of value equality
Change-Id: I635573a20bdaabf07f4aac2f9eda4f943764ee02
This commit is contained in:
parent
6978a7bb93
commit
5602a31d81
@ -79,6 +79,7 @@ import java.util.Collections;
|
||||
import java.util.Iterator;
|
||||
import java.util.LinkedHashSet;
|
||||
import java.util.List;
|
||||
import java.util.Objects;
|
||||
import java.util.Set;
|
||||
|
||||
public class MergeUtil {
|
||||
@ -658,7 +659,7 @@ public class MergeUtil {
|
||||
rw.markStart(mergeTip);
|
||||
for (RevCommit c : alreadyAccepted) {
|
||||
// If branch was not created by this submit.
|
||||
if (c != mergeTip) {
|
||||
if (!Objects.equals(c, mergeTip)) {
|
||||
rw.markUninteresting(c);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user