in src/main/java/com/googlesource/gerrit/plugins/multisite/forwarder/events/ProjectListUpdateEvent.java [37:42]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ProjectListUpdateEvent that = (ProjectListUpdateEvent) o;
return remove == that.remove && Objects.equal(projectName, that.projectName);
}