mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-05-09 23:51:34 +08:00
fix
This commit is contained in:
parent
1cc66f086e
commit
69e2a9b45d
@ -273,7 +273,10 @@ public class CharUtil {
|
|||||||
* @since 4.0.10
|
* @since 4.0.10
|
||||||
*/
|
*/
|
||||||
public static boolean isBlankChar(int c) {
|
public static boolean isBlankChar(int c) {
|
||||||
return Character.isWhitespace(c) || Character.isSpaceChar(c) || c == '\ufeff' || c == '\u202a';
|
return Character.isWhitespace(c)
|
||||||
|
|| Character.isSpaceChar(c)
|
||||||
|
|| c == '\ufeff'
|
||||||
|
|| c == '\u202a';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user