Commit d7abda61 by Thinkpad

1

parent a97c5294
...@@ -86,8 +86,7 @@ public class BasicsGM { ...@@ -86,8 +86,7 @@ public class BasicsGM {
try { try {
Class<?> printClass = c; Class<?> printClass = c;
Method printMethod; Method printMethod;
printMethod = printClass.getMethod("cleanMysqlData") printMethod = printClass.getMethod("cleanMysqlData");
;
printMethod.invoke(obj); printMethod.invoke(obj);
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
...@@ -270,6 +269,7 @@ public class BasicsGM { ...@@ -270,6 +269,7 @@ public class BasicsGM {
try { try {
String errmsg=JSONObject.fromObject(re.body().asString()).getString("errmsg"); String errmsg=JSONObject.fromObject(re.body().asString()).getString("errmsg");
if(StringIsNull(errmsg)){ if(StringIsNull(errmsg)){
return errmsg; return errmsg;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment