Skip to content

Commit 31b0064

Browse files
committed
fix error
1 parent 61e6922 commit 31b0064

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/src/main/java/com/codepath/asynchttpclient/AsyncHttpClient.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public void get(String url, RequestParams requestParams, AbsCallback callback) {
4343
this.get(url, null, requestParams, callback);
4444
}
4545

46-
public void get(String url, HashMap<String, String> requestHeaders, @Nullable RequestParams requestParams, AbsCallback callback) {
46+
public void get(String url, HashMap<String, String> requestHeaders, @Nullable RequestParams<String, String> requestParams, AbsCallback callback) {
4747
if (requestParams != null) {
4848
HttpUrl.Builder httpBuider = HttpUrl.parse(url).newBuilder();
4949
for (Map.Entry<String, String> param : requestParams.entrySet()) {

0 commit comments

Comments
 (0)