Skip to content

Commit

Permalink
修复因git忽略文件名大小写引起的程序错误
Browse files Browse the repository at this point in the history
  • Loading branch information
imkarl committed Sep 6, 2016
1 parent be23a24 commit 6869950
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import cn.jeesoft.qa.json.QAJsonObject;
import cn.jeesoft.qa.json.QAJsonUtils;

public class QAJSONArrayHttpHandler implements QAHttpHandler<JSONArray> {
public class QAJsonArrayHttpHandler implements QAHttpHandler<JSONArray> {

@Override
public JSONArray handlerResponse(Response response) throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import cn.jeesoft.qa.json.QAJsonObject;
import cn.jeesoft.qa.json.QAJsonUtils;

public class QAJSONObjectHttpHandler implements QAHttpHandler<JSONObject> {
public class QAJsonObjectHttpHandler implements QAHttpHandler<JSONObject> {

@Override
public JSONObject handlerResponse(Response response) throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
import cn.jeesoft.qa.libcore.http.handler.QAFastJsonHttpHandler;
import cn.jeesoft.qa.libcore.http.handler.QAFileHttpHandler;
import cn.jeesoft.qa.libcore.http.handler.QAHttpHandler;
import cn.jeesoft.qa.libcore.http.handler.QAJSONArrayHttpHandler;
import cn.jeesoft.qa.libcore.http.handler.QAJSONObjectHttpHandler;
import cn.jeesoft.qa.libcore.http.handler.QAJsonArrayHttpHandler;
import cn.jeesoft.qa.libcore.http.handler.QAJsonObjectHttpHandler;
import cn.jeesoft.qa.libcore.http.handler.QAJsonHttpHandler;
import cn.jeesoft.qa.libcore.http.handler.QAStringHttpHandler;
import cn.jeesoft.qa.libcore.http.part.Part;
Expand All @@ -58,9 +58,6 @@
import com.squareup.okhttp.RequestBody;
import com.squareup.okhttp.Response;

import org.json.JSONArray;
import org.json.JSONObject;

/**
* 网络请求客户端
*/
Expand Down Expand Up @@ -139,8 +136,8 @@ private void registerHttpHandlers() {
registerHttpHandler(QAJson.class, new QAJsonHttpHandler());
registerHttpHandler(QAJsonObject.class, new QAJsonHttpHandler());
registerHttpHandler(QAJsonArray.class, new QAJsonHttpHandler());
registerHttpHandler(org.json.JSONObject.class, new QAJSONObjectHttpHandler());
registerHttpHandler(org.json.JSONArray.class, new QAJSONArrayHttpHandler());
registerHttpHandler(org.json.JSONObject.class, new QAJsonObjectHttpHandler());
registerHttpHandler(org.json.JSONArray.class, new QAJsonArrayHttpHandler());
registerHttpHandler(com.alibaba.fastjson.JSONObject.class, new QAFastJsonHttpHandler());
registerHttpHandler(com.alibaba.fastjson.JSONArray.class, new QAFastJsonHttpHandler());
}
Expand Down

0 comments on commit 6869950

Please sign in to comment.