🎨 Use explicit types on lambda arguments

This commit is contained in:
Kyle Scully
2021-10-23 08:27:14 -07:00
committed by GitHub
parent 44e4ee4416
commit 3039dd018e
5 changed files with 7 additions and 7 deletions

View File

@ -48,7 +48,7 @@ public class ApacheHttpDnsClientBuilder implements ApacheHttpClientBuilder {
private DnsResolver dnsResover;
private HttpRequestRetryHandler httpRequestRetryHandler = (exception, executionCount, context) -> false;
private HttpRequestRetryHandler httpRequestRetryHandler = (IOException exception, int executionCount, HttpContext context) -> false;
private SSLConnectionSocketFactory sslConnectionSocketFactory = SSLConnectionSocketFactory.getSocketFactory();
private PlainConnectionSocketFactory plainConnectionSocketFactory = PlainConnectionSocketFactory.getSocketFactory();
private String httpProxyHost;