Fix line length to appease checkstyle

Original commit: elastic/x-pack-elasticsearch@35df54d342
This commit is contained in:
Ryan Ernst 2016-12-02 15:06:33 -08:00
parent 923926ef28
commit dbbf470734
1 changed files with 2 additions and 1 deletions

View File

@ -67,7 +67,8 @@ public class SecurityRestFilter implements RestHandler {
channel.sendResponse(new BytesRestResponse(channel, e));
} catch (Exception inner) {
inner.addSuppressed(e);
logger.error((Supplier<?>) () -> new ParameterizedMessage("failed to send failure response for uri [{}]", request.uri()), inner);
logger.error((Supplier<?>) () ->
new ParameterizedMessage("failed to send failure response for uri [{}]", request.uri()), inner);
}
}));
} else {