Skip to content

Commit

Permalink
Fixed code style.
Browse files Browse the repository at this point in the history
  • Loading branch information
vldpyatkov committed Oct 5, 2023
1 parent 97a4099 commit 5c89f45
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,9 @@ public CompletableFuture<Void> finish(
});

if (cmd instanceof UpdateAllCommand) {
return completedFuture(((UpdateAllCommand) cmd).rowsToUpdate().keySet().stream().map(uuid -> true).collect(Collectors.toList()));
return completedFuture(((UpdateAllCommand) cmd).rowsToUpdate().keySet().stream()
.map(uuid -> true)
.collect(Collectors.toList()));
} else {
return completedFuture(true);
}
Expand Down

0 comments on commit 5c89f45

Please sign in to comment.