We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccd9bac commit 0c43772Copy full SHA for 0c43772
src/main/java/cloud/eppo/cache/AssignmentCacheEntry.java
@@ -32,7 +32,7 @@ public boolean equals(Object o) {
32
if (o == null || getClass() != o.getClass()) return false;
33
AssignmentCacheEntry that = (AssignmentCacheEntry) o;
34
return Objects.equals(key, that.key)
35
- && Objects.equals(value, that.value);
+ && Objects.equals(value.getValueIdentifier(), that.value.getValueIdentifier());
36
}
37
38
@Override
0 commit comments