Merge pull request #873 from hitfire/v5-dev

fix annotation in StrUtil and SymmetricCrypto
This commit is contained in:
Golden Looly 2020-05-17 19:27:48 +08:00 committed by GitHub
commit de85f25c2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -2953,7 +2953,7 @@ public class StrUtil {
* StrUtil.padAfter("123", 2, '0');//"23" * StrUtil.padAfter("123", 2, '0');//"23"
* </pre> * </pre>
* *
* @param str 字符串如果为<code>null</code>按照空串处理 * @param str 字符串如果为<code>null</code>直接返回null
* @param minLength 最小长度 * @param minLength 最小长度
* @param padChar 补充的字符 * @param padChar 补充的字符
* @return 补充后的字符串 * @return 补充后的字符串
@ -2981,7 +2981,7 @@ public class StrUtil {
* StrUtil.padAfter("123", 2, "ABC");//"23" * StrUtil.padAfter("123", 2, "ABC");//"23"
* </pre> * </pre>
* *
* @param str 字符串如果为<code>null</code>按照空串处理 * @param str 字符串如果为<code>null</code>直接返回null
* @param minLength 最小长度 * @param minLength 最小长度
* @param padStr 补充的字符 * @param padStr 补充的字符
* @return 补充后的字符串 * @return 补充后的字符串

View File

@ -436,7 +436,7 @@ public class SymmetricCrypto implements Serializable {
} }
/** /**
* 解密Hex表示的字符串默认UTF-8编码 * 解密Hex16进制或Base64表示的字符串默认UTF-8编码
* *
* @param data 被解密的String * @param data 被解密的String
* @return 解密后的String * @return 解密后的String