Skip to content

Commit

Permalink
fix bug for ListIdentifierImpl.java
Browse files Browse the repository at this point in the history
  • Loading branch information
lllyfeng committed May 29, 2024
1 parent 68d00c1 commit deb62bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,15 @@
<docencoding>UTF-8</docencoding>
<reportOutputDirectory>${project.build.directory}/apidocs</reportOutputDirectory>
<destDir>apidocs</destDir>

<!--
<doclet>ch.raffael.doclets.pegdown.PegdownDoclet</doclet>
<docletArtifact>
<groupId>ch.raffael.pegdown-doclet</groupId>
<artifactId>pegdown-doclet</artifactId>
<version>1.1</version>
</docletArtifact>
<useStandardDocletOptions>true</useStandardDocletOptions>

-->
</configuration>
<executions>
<execution>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@ public boolean equals(Object o) {

@Override
public int hashCode() {
return Objects.hash(super.hashCode(), getKeys());
return Objects.hash(super.hashCode(), toString());
}
}

0 comments on commit deb62bb

Please sign in to comment.