public boolean equals()

in nuget-server/src/jetbrains/buildServer/nuget/server/trigger/impl/CheckResult.java [68:78]


  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;

    CheckResult that = (CheckResult) o;

    if (myError != null ? !myError.equals(that.myError) : that.myError != null) return false;
    if (myInfos != null ? !myInfos.equals(that.myInfos) : that.myInfos != null) return false;

    return true;
  }