Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/square/okhttp
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed May 6, 2013
2 parents 37a513b + 02864cb commit aa5b823
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 aa5b823

Please sign in to comment.