mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-05-07 14:17:47 +08:00
🎨 优化部分代码
This commit is contained in:
parent
400fbc926a
commit
e8596bceff
@ -9177,7 +9177,6 @@ public enum WxOpenErrorMsgEnum {
|
||||
CODE_9410003(9410003, "获取回放失败");
|
||||
|
||||
|
||||
|
||||
private final int code;
|
||||
private final String msg;
|
||||
|
||||
@ -9189,7 +9188,7 @@ public enum WxOpenErrorMsgEnum {
|
||||
static final Map<Integer, String> valueMap = Maps.newHashMap();
|
||||
|
||||
static {
|
||||
for (com.pxys.wechatgroup.common.error.WxOpenErrorMsgEnum value : com.pxys.wechatgroup.common.error.WxOpenErrorMsgEnum.values()) {
|
||||
for (WxOpenErrorMsgEnum value : WxOpenErrorMsgEnum.values()) {
|
||||
valueMap.put(value.code, value.msg);
|
||||
}
|
||||
}
|
||||
|
@ -3,7 +3,6 @@ package me.chanjar.weixin.common.util.json;
|
||||
import com.google.gson.JsonObject;
|
||||
import com.google.gson.JsonParser;
|
||||
import com.google.gson.stream.JsonReader;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.io.Reader;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user