ICU-21552 Changed to only display "Encountered empty table" warning in verbose mode.

This commit is contained in:
Rich Gillam 2021-03-22 14:34:58 -07:00
parent 2b3a3724c7
commit 29d2e85041

View file

@ -1191,7 +1191,7 @@ realParseTable(ParseState* state, TableResource *table, char *tag, uint32_t star
if (token == TOK_CLOSE_BRACE)
{
if (!readToken) {
if (!readToken && isVerbose()) {
warning(startline, "Encountered empty table");
}
return table;