Browse Source

Fix method naming to follow Java conventions

See gh-48640

Signed-off-by: 高春晖 <18220699480@163.com>
3.5.x
高春晖 4 weeks ago committed by Stéphane Nicoll
parent
commit
2075a2cfdb
  1. 4
      spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/transport/LocalHttpClientTransport.java

4
spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/transport/LocalHttpClientTransport.java

@ -88,11 +88,11 @@ final class LocalHttpClientTransport extends HttpClientTransport { @@ -88,11 +88,11 @@ final class LocalHttpClientTransport extends HttpClientTransport {
private static final Lookup<TlsSocketStrategy> NO_TLS_SOCKET = (name) -> null;
LocalConnectionManager(ResolvedDockerHost dockerHost) {
super(createhttpClientConnectionOperator(dockerHost), null);
super(createHttpClientConnectionOperator(dockerHost), null);
setConnectionConfig(CONNECTION_CONFIG);
}
private static DefaultHttpClientConnectionOperator createhttpClientConnectionOperator(
private static DefaultHttpClientConnectionOperator createHttpClientConnectionOperator(
ResolvedDockerHost dockerHost) {
LocalDetachedSocketFactory detachedSocketFactory = new LocalDetachedSocketFactory(dockerHost);
LocalDnsResolver dnsResolver = new LocalDnsResolver();

Loading…
Cancel
Save