Fix comparison of IdentifiedUser to Account.Id

Change-Id: Iee02eabde2021b89eaa34079e75d8b639c9965a3
This commit is contained in:
David Pursehouse
2014-08-13 16:19:52 +09:00
committed by Dave Borowitz
parent 31b856d070
commit 26ad4c94b8

View File

@@ -217,7 +217,7 @@ public class ChangeRebuilder {
private static boolean sameUpdate(Event event, ChangeUpdate update) {
return update != null
&& round(event.when) == round(update.getWhen())
&& event.who.equals(update.getUser())
&& event.who.equals(update.getUser().getAccountId())
&& event.psId.equals(update.getPatchSetId());
}