]> granicus.if.org Git - icu/commitdiff
ICU-12722 Added default case in a switch statement to resolve an ErrorProne and other...
authorYoshito Umaoka <y.umaoka@gmail.com>
Tue, 14 Mar 2017 21:53:32 +0000 (21:53 +0000)
committerYoshito Umaoka <y.umaoka@gmail.com>
Tue, 14 Mar 2017 21:53:32 +0000 (21:53 +0000)
X-SVN-Rev: 39804

icu4j/main/classes/core/src/com/ibm/icu/impl/TZDBTimeZoneNames.java

index 9676af357d977f9b69dd5a8c9a978a4ea3d65282..71289482eece5ac634374dd4d3743d6acc4f6b5d 100644 (file)
@@ -203,6 +203,10 @@ public class TZDBTimeZoneNames extends TimeZoneNames {
             case SHORT_DAYLIGHT:
                 name = _names[1];
                 break;
+            default:
+                // No names for all other types handled by
+                // this class.
+                break;
             }
 
             return name;