in java/com/googlesource/gerrit/plugins/supermanifest/ConfigEntry.java [152:159]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ConfigEntry that = (ConfigEntry) o;
if (!destRepoKey.equals(that.destRepoKey)) return false;
return destBranch.equals(that.destBranch);
}