From ae2990d0f9b51a2858e48d6912a14d0007e7a53b Mon Sep 17 00:00:00 2001 From: xhxu Date: Tue, 3 Aug 2021 17:08:57 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=98=E5=8E=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../wxpay/service/impl/BusinessCircleServiceImpl.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/BusinessCircleServiceImpl.java b/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/BusinessCircleServiceImpl.java index d384d5fb..89905df5 100644 --- a/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/BusinessCircleServiceImpl.java +++ b/weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/BusinessCircleServiceImpl.java @@ -67,10 +67,6 @@ public class BusinessCircleServiceImpl implements BusinessCircleService { String nonce = resource.getNonce(); String apiV3Key = this.payService.getConfig().getApiV3Key(); try { - System.out.println("cipherText="+cipherText); - System.out.println("associatedData="+associatedData); - System.out.println("nonce="+nonce); - System.out.println("apiV3Key="+apiV3Key); return GSON.fromJson(AesUtils.decryptToString(associatedData, nonce, cipherText, apiV3Key), PaidResult.class); } catch (GeneralSecurityException | IOException e) { throw new WxPayException("解析报文异常!", e);