Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the retrieval on revision instant #608

Merged
merged 2 commits into from May 25, 2021
Merged

Conversation

baixiac
Copy link
Member

@baixiac baixiac commented May 24, 2021

No description provided.

yatharthranjan
yatharthranjan previously approved these changes May 24, 2021
Copy link
Member

@yatharthranjan yatharthranjan left a comment

Choose a reason for hiding this comment

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

LGTM

@@ -36,7 +36,10 @@ public Integer getRequiredRevisionNumber() {

@Override
public Optional<Instant> getRevisionInstant() {
return Optional.empty();
if (entity.getTimestamp() == null) {
Copy link
Member

Choose a reason for hiding this comment

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

Good find. Alternative using optional chaining:

return Optional.ofNullable(entity.getTimestamp())
        .map(t -> t.toInstant());

Copy link
Member Author

Choose a reason for hiding this comment

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

👍 Improvement done.

@blootsvoets blootsvoets merged commit a3bf193 into dev May 25, 2021
@blootsvoets blootsvoets deleted the springboot-2-and-spring-5-fix branch May 25, 2021 11:30
@blootsvoets blootsvoets mentioned this pull request Sep 2, 2021
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.

None yet

3 participants