public int hashCode()

in dotTrace-server/src/main/java/jetbrains/buildServer/dotTrace/server/Statistic.java [78:86]


  public int hashCode() {
    int result = getMeasuredTotalTime().hashCode();
    result = 31 * result + getMeasuredOwnTime().hashCode();
    result = 31 * result + getTotalTimeThreshold().hashCode();
    result = 31 * result + getOwnTimeThreshold().hashCode();
    result = 31 * result + (getPrevTotalTime() != null ? getPrevTotalTime().hashCode() : 0);
    result = 31 * result + (getPrevOwnTime() != null ? getPrevOwnTime().hashCode() : 0);
    return result;
  }