Skip to content

Commit 687ced3

Browse files
committed
Remove prefetch cache reference
1 parent b292838 commit 687ced3

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/com/loopj/android/http/AsyncHttpClient.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ public class AsyncHttpClient {
4848
private DefaultHttpClient httpClient;
4949
private HttpContext httpContext;
5050
private ExecutorService threadPool;
51-
private PrefetchCache prefetchCache;
5251

5352
public AsyncHttpClient(String userAgent) {
5453
BasicHttpParams httpParams = new BasicHttpParams();
@@ -99,10 +98,6 @@ public void setCookieStore(CookieStore cookieStore) {
9998
httpContext.setAttribute(ClientContext.COOKIE_STORE, cookieStore);
10099
}
101100

102-
public void setPrefetchCache(PrefetchCache cache) {
103-
prefetchCache = cache;
104-
}
105-
106101
public void get(String url, AsyncHttpResponseHandler responseHandler) {
107102
get(url, null, responseHandler);
108103
}

0 commit comments

Comments
 (0)