Skip to content

Commit

Permalink
Fix equals
Browse files Browse the repository at this point in the history
Signed-off-by: Harsha Vamsi Kalluri <[email protected]>
  • Loading branch information
harshavamsi committed Aug 13, 2024
1 parent 0a9e47a commit dc2b125
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,7 @@ public boolean equals(Object o) {
if (!sameClassAs(o)) {
return false;
}
ApproximateScoreQuery that = (ApproximateScoreQuery) o;
return originalQuery.equals(that.originalQuery) && approximationQuery.equals(that.approximationQuery);
return true;
}

@Override
Expand Down

0 comments on commit dc2b125

Please sign in to comment.