public boolean equals()

in src/main/java/com/googlesource/gerrit/plugins/multisite/forwarder/CacheEntry.java [68:75]


  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    CacheEntry that = (CacheEntry) o;
    return Objects.equal(pluginName, that.pluginName)
        && Objects.equal(cacheName, that.cacheName)
        && Objects.equal(key, that.key);
  }