Skip to content

Commit

Permalink
Change to HttpClient return type based on new API
Browse files Browse the repository at this point in the history
Changed the return type to HttpClient based on changes to internal API. This might be a compatibility issue.
  • Loading branch information
willr3 committed Oct 25, 2012
1 parent f5fb473 commit 601993d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -69,7 +69,7 @@ protected Map<KeepAliveKey, List<HttpClient>> initialValue() {
* @return An object in the cache, or null if there is none.
*/
@Override
public Object get(URL url, Object obj) {
public HttpClient get(URL url, Object obj) {
Map<KeepAliveKey, List<HttpClient>> map = localHash.get();
KeepAliveKey dkak = new KeepAliveKey(url);
List<HttpClient> clientVector = map.get(dkak);
Expand Down

0 comments on commit 601993d

Please sign in to comment.