Skip to content

Commit

Permalink
Fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
pavetok committed Feb 17, 2024
1 parent 10c422f commit 790a2c4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ public class SepulkaServiceImpl implements SepulkaService {
@Override
public RegistrationResponse register(RegistrationRequest request) {
var now = LocalDateTime.now();
var sepulkaCreated = converter.toState(request)
var sepulkaCreated = converter
.toState(request)
.internalId(randomUUID())
.revision(0)
.createdAt(now)
Expand Down

0 comments on commit 790a2c4

Please sign in to comment.