public boolean equals()

in graphql-dgs-example-shared/src/main/java/com/netflix/graphql/dgs/example/shared/types/ScaryMovie.java [76:84]


  public boolean equals(Object o) {
      if (this == o) return true;
      if (o == null || getClass() != o.getClass()) return false;
      ScaryMovie that = (ScaryMovie) o;
      return java.util.Objects.equals(title, that.title) &&
              java.util.Objects.equals(director, that.director) &&
              gory == that.gory &&
              scareFactor == that.scareFactor;
  }