Skip to content

Commit

Permalink
Update server/src/main/java/org/opensearch/indices/IndicesRequestCach…
Browse files Browse the repository at this point in the history
…e.java

Co-authored-by: Kiran Prakash <[email protected]>
Signed-off-by: Sagar <[email protected]>
  • Loading branch information
sgup432 and kiranprakash154 authored Nov 6, 2023
1 parent 4d2b5ed commit ebeadf9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ public boolean equals(Object o) {
return false;
}
CleanupKey that = (CleanupKey) o;
if (Objects.equals(readerCacheKeyId, that.readerCacheKeyId) == false) return false;
if (!Objects.equals(readerCacheKeyId, that.readerCacheKeyId)) return false;
if (!entity.getCacheIdentity().equals(that.entity.getCacheIdentity())) return false;
return true;
}
Expand Down

0 comments on commit ebeadf9

Please sign in to comment.