fix comment

This commit is contained in:
Looly
2019-10-02 16:05:50 +08:00
parent 3acf9c4e70
commit 522ed4308d
37 changed files with 85 additions and 85 deletions

View File

@@ -151,7 +151,7 @@ public class HtmlUtil {
// (?i) 表示忽略大小写
// \s* 属性名前后的空白符去除
// [^>]+? 属性值,至少有一个非>的字符,>表示标签结束
// \s+(?=>) 表示属性值后跟空格加>末尾的属性,此时去掉空格
// \s+(?=>) 表示属性值后跟空格加>末尾的属性,此时去掉空格
// (?=\s|>) 表示属性值后跟空格(属性后还有别的属性)或者跟>(最后一个属性)
regex = StrUtil.format("(?i)(\\s*{}\\s*=[^>]+?\\s+(?=>))|(\\s*{}\\s*=[^>]+?(?=\\s|>))", attr, attr);
content = content.replaceAll(regex, StrUtil.EMPTY);

View File

@@ -495,7 +495,7 @@ public class SoapClient {
}
/**
* 执行Webservice请求发送SOAP内容
* 执行Webservice请求发送SOAP内容
*
* @return 返回结果
*/
@@ -517,7 +517,7 @@ public class SoapClient {
}
/**
* 执行Webservice请求发送SOAP内容
* 执行Webservice请求发送SOAP内容
*
* @return 返回结果
*/
@@ -526,7 +526,7 @@ public class SoapClient {
}
/**
* 执行Webservice请求发送SOAP内容
* 执行Webservice请求发送SOAP内容
*
* @param pretty 是否格式化
* @return 返回结果