REM:
1. 更正一处CheckStyle非法变量名
This commit is contained in:
HuangXin 2020-12-09 10:09:53 +08:00
parent ef436c6e6a
commit 7fcbf06d94
1 changed files with 3 additions and 3 deletions

View File

@ -36,14 +36,14 @@ public class HuaWeiInterface {
*
* @param baseUrlPath the base url path
* @param token the token
* @param zone_ip the zone ip
* @param zoneIp the zone ip
* @return the error code
*/
public ErrorCode createDivert(String baseUrlPath, String token, String[] zone_ip) {
public ErrorCode createDivert(String baseUrlPath, String token, String[] zoneIp) {
//获取HTTP部分
HttpResponse response = RestfulInterface.huaWeiProRun(baseUrlPath,
token,
new HuaWeiCreatDivertReq(zone_ip),
new HuaWeiCreatDivertReq(zoneIp),
RequestMethod.POST);
if (response != null) {