public boolean equals()

in harness/src/main/java/org/apache/geode/perftest/analysis/BenchmarkRunResult.java [69:78]


  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    BenchmarkRunResult that = (BenchmarkRunResult) o;
    return Objects.equals(benchmarkResults, that.benchmarkResults);
  }