This commit is contained in:
Looly 2020-07-16 15:47:16 +08:00
parent 1cc66f086e
commit 69e2a9b45d

View File

@ -273,7 +273,10 @@ public class CharUtil {
* @since 4.0.10
*/
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';
}
/**