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
1 changed files with 2 additions and 0 deletions

View File

@ -863,6 +863,8 @@ public class FastDateParser implements DateParser, Serializable {
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);