ICU-21552 Changed to only display "Encountered empty table" warning in verbose mode.
diff --git a/icu4c/source/tools/genrb/parse.cpp b/icu4c/source/tools/genrb/parse.cpp
index 18a8c76..5abe5d6 100644
--- a/icu4c/source/tools/genrb/parse.cpp
+++ b/icu4c/source/tools/genrb/parse.cpp
@@ -1191,7 +1191,7 @@
 
         if (token == TOK_CLOSE_BRACE)
         {
-            if (!readToken) {
+            if (!readToken && isVerbose()) {
                 warning(startline, "Encountered empty table");
             }
             return table;