1
0
mirror of synced 2025-12-19 14:48:02 +08:00

🎨 优化代码

This commit is contained in:
Binary Wang
2020-05-23 20:58:35 +08:00
parent ae1b14f37e
commit bcefec0f4b
3 changed files with 1 additions and 4 deletions

View File

@@ -122,11 +122,9 @@ public interface PayScoreService {
* *
* @param data the data * @param data the data
* @return the wx pay score result * @return the wx pay score result
* @throws WxPayException the wx pay exception
*/ */
PayScoreNotifyData parseNotifyData(String data); PayScoreNotifyData parseNotifyData(String data);
/** /**
* <pre> * <pre>
* 支付分回调NotifyData解密resource * 支付分回调NotifyData解密resource

View File

@@ -153,7 +153,6 @@ public class PayScoreServiceImpl implements PayScoreService {
@Override @Override
public PayScoreNotifyData parseNotifyData(String data) { public PayScoreNotifyData parseNotifyData(String data) {
return GSON.fromJson(data, PayScoreNotifyData.class); return GSON.fromJson(data, PayScoreNotifyData.class);
} }
@Override @Override