Skip to content

Commit

Permalink
properly align code
Browse files Browse the repository at this point in the history
Signed-off-by: Ludovic Orban <[email protected]>
  • Loading branch information
lorban committed Dec 11, 2023
1 parent 126ae5c commit cd199f1
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,8 @@ public CompletableFuture<Void> begin() {
})
.thenRun(this::fireCompleteEvent)
// HttpClient cannot be stopped from one of its own threads.
.whenCompleteAsync((r, x) ->
{
if (LOGGER.isDebugEnabled())
{
.whenCompleteAsync((r, x) -> {
if (LOGGER.isDebugEnabled()) {
LOGGER.debug("stopping http clients");
}
Collection<HttpClient> clients = getBeans(HttpClient.class);
Expand Down

0 comments on commit cd199f1

Please sign in to comment.