Skip to content

Commit

Permalink
Apply align suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
imbajin authored May 28, 2023
1 parent 5d4d4f6 commit 53d5565
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public void loadGraph() {
}
CompletableFuture.allOf(futures.toArray(new CompletableFuture[0])).exceptionally(e -> {
throw new ComputerException("An exception occurred during parallel " +
"sending vertices", e);
"sending vertices", e);
}).join();
this.sendManager.finishSend(MessageType.VERTEX);

Expand All @@ -124,7 +124,7 @@ public void loadGraph() {
}
CompletableFuture.allOf(futures.toArray(new CompletableFuture[0])).exceptionally(e -> {
throw new ComputerException("An exception occurred during parallel " +
"sending edges", e);
"sending edges", e);
}).join();
this.sendManager.finishSend(MessageType.EDGE);
this.sendManager.clearBuffer();
Expand Down

0 comments on commit 53d5565

Please sign in to comment.