Skip to content

Conversation

@typotter
Copy link
Collaborator

@typotter typotter commented Sep 15, 2025

stacked on #221

Comment on lines 24 to 36
@Override
public boolean putIfAbsent(String cacheKey, @NonNull String serializedEntry) {
boolean hadNoPreviousEntry;
synchronized (cache) {
String entry = cache.get(cacheKey);
hadNoPreviousEntry = entry == null;
if (hadNoPreviousEntry) {
cache.put(cacheKey, serializedEntry);
}
}
return hadNoPreviousEntry;
}
});
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is this part of the release?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no. artifact from understacked PR which is now merged.

@typotter typotter merged commit c6c05c0 into main Sep 16, 2025
4 checks passed
@typotter typotter deleted the typo/rel-4-11 branch September 16, 2025 14:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants