1
0
mirror of https://github.com/square/okhttp.git synced 2026-01-27 04:22:07 +03:00

Consistent casing of 'SSL' in method names.

This commit is contained in:
Jake Wharton
2013-05-05 23:24:26 -07:00
parent a3440ba59e
commit ea4297ded7
2 changed files with 2 additions and 2 deletions

View File

@@ -147,7 +147,7 @@ public final class OkHttpClient {
return this;
}
public SSLSocketFactory getSslSocketFactory() {
public SSLSocketFactory getSSLSocketFactory() {
return sslSocketFactory;
}

View File

@@ -114,7 +114,7 @@ public class HttpURLConnectionImpl extends HttpURLConnection {
this.proxySelector = client.getProxySelector();
this.cookieHandler = client.getCookieHandler();
this.connectionPool = client.getConnectionPool();
this.sslSocketFactory = client.getSslSocketFactory();
this.sslSocketFactory = client.getSSLSocketFactory();
this.hostnameVerifier = client.getHostnameVerifier();
this.transports = client.getTransports();
this.authenticator = client.getAuthenticator();