adjusted formatting to follow standards
Signed-off-by: Marc-Olivier Fleury <mofleury@gmail.com>
This commit is contained in:
parent
ebe28c27e4
commit
8e51a4d532
|
@ -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;
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue