Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -535,14 +535,18 @@ public interface WxCpTpService {
|
||||
*
|
||||
* @return WxCpTpMessageService wx cp tp message service
|
||||
*/
|
||||
WxCpTpMessageService getWxCpTpMessageService();
|
||||
default WxCpTpMessageService getWxCpTpMessageService() {
|
||||
throw new UnsupportedOperationException("WxCpTpMessageService is not supported");
|
||||
}
|
||||
|
||||
/**
|
||||
* set message service
|
||||
*
|
||||
* @param wxCpTpMessageService the message service
|
||||
*/
|
||||
void setWxCpTpMessageService(WxCpTpMessageService wxCpTpMessageService);
|
||||
default void setWxCpTpMessageService(WxCpTpMessageService wxCpTpMessageService) {
|
||||
throw new UnsupportedOperationException("WxCpTpMessageService is not supported");
|
||||
}
|
||||
|
||||
WxCpTpXmlMessage fromEncryptedXml(String encryptedXml,
|
||||
String timestamp, String nonce, String msgSignature);
|
||||
|
||||
Reference in New Issue
Block a user