Add a default case to switch to appease FindBugs

This commit is contained in:
Allon Mureinik 2017-04-01 12:16:52 +03:00 committed by pascalschumacher
parent 8069e1c1ce
commit 9f7d03f091

View File

@ -863,6 +863,8 @@ private static class TzInfo {
case 5: // offset 5 starts additional names, probably standard time
tzInfo = standard;
break;
default:
break;
}
if (zoneNames[i] != null) {
final String key = zoneNames[i].toLowerCase(locale);