From 1a8ec43d260329f10cdddb285f0f541b6d1fef4f Mon Sep 17 00:00:00 2001 From: 007gzs <007gzs@gmail.com> Date: Sat, 4 Apr 2020 15:47:22 +0800 Subject: [PATCH] =?UTF-8?q?:bug:=20#1424=20=E4=BF=AE=E5=A4=8D=E5=BC=80?= =?UTF-8?q?=E6=94=BE=E5=B9=B3=E5=8F=B0execute=E6=96=B9=E6=B3=95=E5=8A=A0?= =?UTF-8?q?=E5=90=8C=E6=AD=A5=E9=94=81=E5=AF=BC=E8=87=B4=E7=9A=84=E5=B9=B6?= =?UTF-8?q?=E5=8F=91=E6=80=A7=E8=83=BD=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../chanjar/weixin/open/api/impl/WxOpenServiceAbstractImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weixin-java-open/src/main/java/me/chanjar/weixin/open/api/impl/WxOpenServiceAbstractImpl.java b/weixin-java-open/src/main/java/me/chanjar/weixin/open/api/impl/WxOpenServiceAbstractImpl.java index b7084c9e..e4e66890 100644 --- a/weixin-java-open/src/main/java/me/chanjar/weixin/open/api/impl/WxOpenServiceAbstractImpl.java +++ b/weixin-java-open/src/main/java/me/chanjar/weixin/open/api/impl/WxOpenServiceAbstractImpl.java @@ -42,7 +42,7 @@ public abstract class WxOpenServiceAbstractImpl implements WxOpenService, */ public abstract void initHttp(); - protected synchronized T execute(RequestExecutor executor, String uri, E data) throws WxErrorException { + protected T execute(RequestExecutor executor, String uri, E data) throws WxErrorException { try { T result = executor.execute(uri, data, WxType.Open); this.log.debug("\n【请求地址】: {}\n【请求参数】:{}\n【响应数据】:{}", uri, data, result);