public boolean equals()

in src/main/java/com/googlesource/gerrit/plugins/simplesubmitrules/api/SubmitConfig.java [41:47]


  public boolean equals(Object o) {
    if (!(o instanceof SubmitConfig)) {
      return false;
    }
    SubmitConfig other = (SubmitConfig) o;
    return Objects.equals(labels, other.labels) && Objects.equals(comments, other.comments);
  }