Skip to content

Commit

Permalink
Format tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
jhy committed Jul 29, 2024
1 parent 77932b5 commit aa7f0a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/jsoup/parser/Tag.java
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ public boolean equals(Object o) {
@Override
public int hashCode() {
return Objects.hash(tagName, isBlock, formatAsBlock, empty, selfClosing, preserveWhitespace,
formList, formSubmit);
formList, formSubmit);
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/jsoup/safety/Safelist.java
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ abstract static class TypedValue {

@Override
public int hashCode() {
return Objects.hash(value);
return value.hashCode();
}

@Override
Expand Down

0 comments on commit aa7f0a8

Please sign in to comment.