--- old/src/java.base/share/classes/sun/util/resources/LocaleData.java 2018-04-23 15:34:16.682555469 -0700 +++ new/src/java.base/share/classes/sun/util/resources/LocaleData.java 2018-04-23 15:34:16.396550001 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1996, 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1996, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -275,11 +275,6 @@ } } } - // Force fallback to Locale.ENGLISH for CLDR time zone names support - if (locale.getLanguage() != "en" - && type == CLDR && category.equals("TimeZoneNames")) { - candidates.add(candidates.size() - 1, Locale.ENGLISH); - } CANDIDATES_MAP.putIfAbsent(key, candidates); } return candidates;