Skip to content

Commit

Permalink
Merge pull request #2293 from mreichelt/2292-okhttpclient-final
Browse files Browse the repository at this point in the history
#2292 removed final from OkHttpClient
  • Loading branch information
swankjesse committed Jan 28, 2016
2 parents 5d2bc19 + 425167a commit 38ddfed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion okhttp/src/main/java/okhttp3/OkHttpClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
* Response response = clientWith30sTimeout.newCall(request).execute();
* }</pre>
*/
public final class OkHttpClient implements Cloneable, Call.Factory {
public class OkHttpClient implements Cloneable, Call.Factory {
private static final List<Protocol> DEFAULT_PROTOCOLS = Util.immutableList(
Protocol.HTTP_2, Protocol.SPDY_3, Protocol.HTTP_1_1);

Expand Down

0 comments on commit 38ddfed

Please sign in to comment.