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