ICU-12722 Added default case in a switch statement to resolve an ErrorProne and other static code analysis tool's warning.

X-SVN-Rev: 39804
This commit is contained in:
Yoshito Umaoka 2017-03-14 21:53:32 +00:00
parent 53c2cc2c4c
commit 10ae498198

View 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;