Skip to content

Commit

Permalink
Fix return type.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Feb 8, 2025
1 parent 9b11850 commit 235772d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ public EqualsMethod withFieldOrder(Comparator<? super FieldDescription.InDefined
* @return A new version of this equals method implementation that permits subclasses of the instrumented type to be equal to instances
* of the instrumented type instead of requiring an exact match.
*/
public Implementation withSubclassEquality() {
public EqualsMethod withSubclassEquality() {
return new EqualsMethod(superClassCheck, TypeCompatibilityCheck.SUBCLASS, ignored, nonNullable, identity, comparator);
}

Expand Down

0 comments on commit 235772d

Please # to comment.