1
0
mirror of https://github.com/square/okhttp.git synced 2026-01-17 08:42:25 +03:00

Merge pull request #2293 from mreichelt/2292-okhttpclient-final

#2292 removed final from OkHttpClient
This commit is contained in:
Jesse Wilson
2016-01-28 15:53:28 -05:00

View File

@@ -56,7 +56,7 @@ import okhttp3.internal.tls.OkHostnameVerifier;
* 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);