1
0
mirror of https://github.com/square/okhttp.git synced 2025-11-27 18:21:14 +03:00

Drop get and set prefixes in OkHttpClient, OkHttpClient.Builder

This commit is contained in:
jwilson
2016-01-01 12:12:35 -05:00
parent 0a0a612fc4
commit 38d570a6b2
46 changed files with 802 additions and 806 deletions

View File

@@ -122,7 +122,7 @@ public final class Crawler {
Cache cache = new Cache(new File(args[0]), cacheByteCount);
OkHttpClient client = new OkHttpClient.Builder()
.setCache(cache)
.cache(cache)
.build();
Crawler crawler = new Crawler(client);