mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 00:43:32 +00:00
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:
parent
53c2cc2c4c
commit
10ae498198
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue