Skip to content

Commit 941c47a

Browse files
committed
🎨 修复已移除代码
1 parent 6bba793 commit 941c47a

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

weixin-java-miniapp/src/main/java/cn/binarywang/wx/miniapp/api/WxMaService.java

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -450,19 +450,12 @@ public interface WxMaService extends WxService {
450450
WxMaShopAuditService getShopAuditService();
451451

452452
/**
453-
* 获取小程序 URL Link服务接口
453+
* 获取小程序Link服务接口
454454
*
455455
* @return
456456
*/
457457
WxMaLinkService getLinkService();
458458

459-
/**
460-
* 获取小程序 Short Link服务接口
461-
*
462-
* @return
463-
*/
464-
WxMaShortLinkService getShortLinkService();
465-
466459
/**
467460
* 获取电子发票报销方服务接口
468461
*

weixin-java-miniapp/src/main/java/cn/binarywang/wx/miniapp/api/impl/BaseWxMaServiceImpl.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ public abstract class BaseWxMaServiceImpl<H, P> implements WxMaService, RequestH
7474
private final WxMaShopAfterSaleService shopAfterSaleService = new WxMaShopAfterSaleServiceImpl(this);
7575
private final WxMaShopDeliveryService shopDeliveryService = new WxMaShopDeliveryServiceImpl(this);
7676
private final WxMaLinkService linkService = new WxMaLinkServiceImpl(this);
77-
private final WxMaShortLinkService shortlinkService = new WxMaShortLinkServiceImpl(this);
7877
private final WxMaReimburseInvoiceService reimburseInvoiceService = new WxMaReimburseInvoiceServiceImpl(this);
7978
private Map<String, WxMaConfig> configMap;
8079
private int retrySleepMillis = 1000;
@@ -570,11 +569,6 @@ public WxMaLinkService getLinkService() {
570569
return this.linkService;
571570
}
572571

573-
@Override
574-
public WxMaShortLinkService getShortLinkService() {
575-
return this.shortlinkService;
576-
}
577-
578572
@Override
579573
public WxMaReimburseInvoiceService getReimburseInvoiceService() {
580574
return this.reimburseInvoiceService;

0 commit comments

Comments
 (0)