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 40cc1e2 commit 7f2c833
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Key key = (Key) o;
if (Objects.equals(readerCacheKeyId, key.readerCacheKeyId) == false) return false;
if (!Objects.equals(readerCacheKeyId, key.readerCacheKeyId)) return false;
if (!entity.getCacheIdentity().equals(key.entity.getCacheIdentity())) return false;
if (!value.equals(key.value)) return false;
return true;
Expand Down

0 comments on commit 7f2c833

Please sign in to comment.