Skip to content

Commit

Permalink
Consistent casing of 'SSL' in method names.
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed May 6, 2013
1 parent a3440ba commit ea4297d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion okhttp/src/main/java/com/squareup/okhttp/OkHttpClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public OkHttpClient setSSLSocketFactory(SSLSocketFactory sslSocketFactory) {
return this;
}

public SSLSocketFactory getSslSocketFactory() {
public SSLSocketFactory getSSLSocketFactory() {
return sslSocketFactory;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public HttpURLConnectionImpl(URL url, OkHttpClient client, OkResponseCache respo
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();
Expand Down

0 comments on commit ea4297d

Please sign in to comment.