public boolean equals()

in folsom/src/main/java/com/spotify/folsom/MemcachedStats.java [40:45]


  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    MemcachedStats that = (MemcachedStats) o;
    return stats.equals(that.stats);
  }