mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-08-25 01:14:36 +08:00
remove useless javadoc
This commit is contained in:
parent
ff3cdb1487
commit
2e85dfdf7a
@ -1,14 +1,5 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.common.util.json;
|
package me.chanjar.weixin.common.util.json;
|
||||||
|
|
||||||
|
|
||||||
import com.google.common.collect.Lists;
|
import com.google.common.collect.Lists;
|
||||||
import com.google.gson.JsonArray;
|
import com.google.gson.JsonArray;
|
||||||
import com.google.gson.JsonElement;
|
import com.google.gson.JsonElement;
|
||||||
@ -16,7 +7,6 @@ import com.google.gson.JsonObject;
|
|||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
public class GsonHelper {
|
public class GsonHelper {
|
||||||
|
|
||||||
public static boolean isNull(JsonElement element) {
|
public static boolean isNull(JsonElement element) {
|
||||||
@ -95,7 +85,7 @@ public class GsonHelper {
|
|||||||
|
|
||||||
public static boolean getAsPrimitiveBool(JsonElement element) {
|
public static boolean getAsPrimitiveBool(JsonElement element) {
|
||||||
Boolean r = getAsBoolean(element);
|
Boolean r = getAsBoolean(element);
|
||||||
return r != null && r.booleanValue();
|
return r != null && r;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Double getAsDouble(JsonElement element) {
|
public static Double getAsDouble(JsonElement element) {
|
||||||
@ -129,6 +119,7 @@ public class GsonHelper {
|
|||||||
|
|
||||||
return result.toArray(new Integer[0]);
|
return result.toArray(new Integer[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String[] getStringArray(JsonObject o, String string) {
|
public static String[] getStringArray(JsonObject o, String string) {
|
||||||
JsonArray jsonArray = getAsJsonArray(o.getAsJsonArray(string));
|
JsonArray jsonArray = getAsJsonArray(o.getAsJsonArray(string));
|
||||||
if (jsonArray == null) {
|
if (jsonArray == null) {
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.common.util.json;
|
package me.chanjar.weixin.common.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.common.util.json;
|
package me.chanjar.weixin.common.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.common.util.json;
|
package me.chanjar.weixin.common.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package cn.binarywang.wx.miniapp.util.json;
|
package cn.binarywang.wx.miniapp.util.json;
|
||||||
|
|
||||||
import cn.binarywang.wx.miniapp.bean.WxMaKefuMessage;
|
import cn.binarywang.wx.miniapp.bean.WxMaKefuMessage;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.JsonElement;
|
import com.google.gson.JsonElement;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.JsonElement;
|
import com.google.gson.JsonElement;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.JsonElement;
|
import com.google.gson.JsonElement;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.JsonElement;
|
import com.google.gson.JsonElement;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
@ -1,11 +1,3 @@
|
|||||||
/*
|
|
||||||
* KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved.
|
|
||||||
*
|
|
||||||
* This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended
|
|
||||||
* only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction
|
|
||||||
* arose from modification of the original source, or other redistribution of this source
|
|
||||||
* is not permitted without written permission of the KINGSTAR MEDIA SOLUTIONS LTD.
|
|
||||||
*/
|
|
||||||
package me.chanjar.weixin.mp.util.json;
|
package me.chanjar.weixin.mp.util.json;
|
||||||
|
|
||||||
import com.google.gson.*;
|
import com.google.gson.*;
|
||||||
|
Loading…
Reference in New Issue
Block a user