adjusted formatting to follow standards

Signed-off-by: Marc-Olivier Fleury <mofleury@gmail.com>
This commit is contained in:
Marc-Olivier Fleury 2019-09-30 08:29:39 +02:00 committed by Marc-Olivier Fleury
parent ebe28c27e4
commit 8e51a4d532
1 changed files with 3 additions and 3 deletions

View File

@ -540,12 +540,12 @@ public class HttpClient extends ContainerLifeCycle
port = normalizePort(scheme, port);
Origin origin = new Origin(scheme, host, port);
return destinations.computeIfAbsent(origin, o -> {
return destinations.computeIfAbsent(origin, o ->
{
HttpDestination newDestination = getTransport().newHttpDestination(o);
addManaged(newDestination);
if (LOG.isDebugEnabled()) {
if (LOG.isDebugEnabled())
LOG.debug("Created {}", newDestination);
}
return newDestination;
});
}