!622 fix 修正注释错别字和顺序

* fix 修正注释错别字和顺序
This commit is contained in:
zst_2001
2024-12-19 16:26:26 +00:00
committed by 疯狂的狮子Li
parent ad85fa2016
commit f20c271972
2 changed files with 3 additions and 3 deletions

View File

@ -80,12 +80,12 @@ public enum SensitiveStrategy {
FIRST_MASK(DesensitizedUtil::firstMask),
/**
* 清空为null
* 清空为""
*/
CLEAR(s -> DesensitizedUtil.clear()),
/**
* 清空为""
* 清空为null
*/
CLEAR_TO_NULL(s -> DesensitizedUtil.clearToNull());