Disallow visually-empty profile names.

This commit is contained in:
Greyson Parrelli
2022-01-24 17:32:39 -05:00
committed by Alex Hart
parent 523e21f3be
commit a0031298d8
4 changed files with 12 additions and 5 deletions

View File

@@ -30,6 +30,8 @@ public final class StringUtilTest_whitespace_handling {
{ "\u200E", "", true },
{ "\u200F", "", true },
{ "\u2007", "", true },
{ "\u200B", "", true },
{ "\u2800", "", true },
{ "\u2007\u200FA\tB\u200EC\u200E\u200F", "A\tB\u200EC", false },
});