public boolean equals()

in geode-benchmarks/src/main/java/org/apache/geode/benchmark/tasks/StartHAProxy.java [125:137]


  public boolean equals(final Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    final StartHAProxy that = (StartHAProxy) o;
    return locatorPort == that.locatorPort &&
        serverPort == that.serverPort &&
        proxyPort == that.proxyPort &&
        Objects.equals(image, that.image);
  }