CharUtil.isBlankChar增加\u180e

This commit is contained in:
Looly
2022-11-17 12:05:05 +08:00
parent 052b0dc8d3
commit ff0e3ea52b
2 changed files with 4 additions and 1 deletions

View File

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