Skip to content

Commit

Permalink
GROOVY-11436: refine check for characters with full width
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellansun committed Jul 14, 2024
1 parent 74db753 commit 265b49f
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,9 @@ class AsciiTableMaker {
}

private static boolean isFullWidth(char c) {
// space and visible ASCII characters
if (32 <= c && c <= 126) return false

Character.UnicodeBlock block

try {
Expand Down

0 comments on commit 265b49f

Please sign in to comment.