Merge pull request #2738 from wangliang181230/charutil

CharUtil.isBlankChar('\u180e') 兼容高版本jdk。
This commit is contained in:
Golden Looly 2022-11-17 10:21:40 +08:00 committed by GitHub
commit 8d1888bfa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -263,7 +263,8 @@ public class CharUtil implements CharPool {
// issue#I5UGSQHangul Filler
|| c == '\u3164'
// Braille Pattern Blank
|| c == '\u2800';
|| c == '\u2800'
|| c == '\u180e';
}
/**