public boolean equals()

in src/main/java/com/google/solutions/df/log/aggregations/common/AvgCombineFn.java [41:49]


    public boolean equals(Object obj) {
      if (this == obj) return true;
      if (obj == null) return false;
      if (getClass() != obj.getClass()) return false;
      Accum other = (Accum) obj;
      if (count != other.count) return false;
      if (sum != other.sum) return false;
      return true;
    }