Quellcode durchsuchen

优化代码

master
Binary Wang vor 7 Jahren
Ursprung
Commit
81ebe1a085
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. +2
    -2
      weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/WxPayServiceAbstractImpl.java

+ 2
- 2
weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/WxPayServiceAbstractImpl.java Datei anzeigen

@@ -422,9 +422,9 @@ public abstract class WxPayServiceAbstractImpl implements WxPayService {
String responseContent = this.post(url, request.toXML(), false);
if (responseContent.startsWith("<")) {
throw WxPayException.from(WxPayBaseResult.fromXML(responseContent, WxPayCommonResult.class));
} else {
return this.handleBillInformation(responseContent);
}

return this.handleBillInformation(responseContent);
}

private WxPayBillResult handleBillInformation(String responseContent) {


Laden…
Abbrechen
Speichern