add method

This commit is contained in:
Looly
2020-08-01 22:34:34 +08:00
parent b3a0b023d3
commit 232c292dfc
2 changed files with 2 additions and 1 deletions

View File

@@ -1333,7 +1333,7 @@ public class StrUtil {
* @return 清理后的字符串
*/
public static String cleanBlank(CharSequence str) {
return filter(str, c -> !CharUtil.isBlankChar(c));
return filter(str, c -> false == CharUtil.isBlankChar(c));
}
// ------------------------------------------------------------------------------ Split