public boolean equals()

in java/com/google/gerrit/plugins/checks/api/CheckInput.java [49:62]


  public boolean equals(Object o) {
    if (!(o instanceof CheckInput)) {
      return false;
    }
    CheckInput other = (CheckInput) o;
    return Objects.equals(other.checkerUuid, checkerUuid)
        && Objects.equals(other.state, state)
        && Objects.equals(other.message, message)
        && Objects.equals(other.url, url)
        && Objects.equals(other.started, started)
        && Objects.equals(other.finished, finished)
        && Objects.equals(other.notify, notify)
        && Objects.equals(other.notifyDetails, notifyDetails);
  }