🎨 清理一些jetbrain的校验注解

This commit is contained in:
Binary Wang
2022-09-26 23:28:23 +08:00
parent 26e2cbcb60
commit 7219c2dbd0
11 changed files with 52 additions and 70 deletions

View File

@ -9,7 +9,6 @@ import lombok.RequiredArgsConstructor;
import me.chanjar.weixin.common.enums.WxType;
import me.chanjar.weixin.common.error.WxError;
import me.chanjar.weixin.common.error.WxErrorException;
import org.jetbrains.annotations.NotNull;
import javax.crypto.Mac;
import javax.crypto.spec.SecretKeySpec;
@ -54,7 +53,6 @@ public class WxMaInternetServiceImpl implements WxMaInternetService {
return getWxMaInternetResponse(url);
}
@NotNull
private WxMaInternetResponse getWxMaInternetResponse(String url) throws WxErrorException {
String responseContent = this.wxMaService.post(url, "");
WxMaInternetResponse response = WxMaGsonBuilder.create().fromJson(responseContent, WxMaInternetResponse.class);