Update RequestNetwork.java

This commit is contained in:
xC3FFF0E 2022-01-17 21:49:41 +08:00 committed by GitHub
parent 2418b1c46d
commit 514398920d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,7 +46,7 @@ RequestNetworkController.getInstance().execute(this, method, url, tag, requestLi
} }
public interface RequestListener { public interface RequestListener {
public void onResponse(String tag, String response); public void onResponse(String tag, String response, HashMap<String, Object> responseHeaders);
public void onErrorResponse(String tag, String message); public void onErrorResponse(String tag, String message);
} }
} }