Skip to content

Commit

Permalink
fix: build project error
Browse files Browse the repository at this point in the history
  • Loading branch information
shawndenggh committed Dec 4, 2023
1 parent 4e64da4 commit 13fe9a0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public interface AppTicketStorage {
* update ticket
*
* @param appTicket ticket pushed by the open platform
* @param expiresInSeconds expire secondsunit:s
* @param expiresInSeconds expire seconds, unit:s
*/
void updateTicket(String appTicket, int expiresInSeconds);
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class WeComConfig {

private List<InitMenu> initMenus;

// whether to create a dedicated domain namedefault:false
// whether to create a dedicated domain name(default:false)
private boolean autoCreateDomain = false;

private OperateEnpDdns operateEnpDdns;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public String addEnpDomainName(String domainPrefix) {
return data.getDomainName();
}
catch (RestClientException e) {
LOGGER.error("create business domain error", e);
LOGGER.error("create business domain error: ", e);
throw new WeComApiException("create business domain error");
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public WxCpIsvPermitListOrderAccount listOrderAccount(String orderId, Integer li
public WxCpIsvPermitBatchGetActiveInfo batchGetActiveInfo(String authCorpId, List<String> activeCodes) throws WxErrorException {
JsonObject jsonObject = new JsonObject();
jsonObject.addProperty("corpid", authCorpId);
JsonArray activeCodeList = new JsonArray(activeCodes.size());
JsonArray activeCodeList = new JsonArray();
activeCodes.forEach(activeCodeList::add);
jsonObject.add("active_code_list", activeCodeList);
@SuppressWarnings("deprecation")
Expand Down

0 comments on commit 13fe9a0

Please sign in to comment.