Skip to content

Commit

Permalink
add NamingConventions to hashcode of InheritingConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
vincemann authored and chhsiao90 committed Jul 12, 2023
1 parent 40fa89d commit 5f46c1f
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -287,6 +287,8 @@ public int hashCode() {
result = prime * result + getDestinationNameTransformer().hashCode();
result = prime * result + getFieldAccessLevel().hashCode();
result = prime * result + getMethodAccessLevel().hashCode();
result = prime * result + getSourceNamingConvention().hashCode();
result = prime * result + getDestinationNamingConvention().hashCode();
result = prime * result + (isFieldMatchingEnabled() ? 1231 : 1237);
return result;
}
Expand Down

0 comments on commit 5f46c1f

Please sign in to comment.