--- old/make/jdk/src/classes/build/tools/cldrconverter/LDMLParseHandler.java 2020-01-02 21:47:27.000000000 -0800 +++ new/make/jdk/src/classes/build/tools/cldrconverter/LDMLParseHandler.java 2020-01-02 21:47:27.000000000 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2020, 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 @@ -644,19 +644,13 @@ } break; case "decimal": - // for FormatData - // copy string for later assembly into NumberElements - if (currentContainer.getqName().equals("symbols")) { - pushStringEntry(qName, attributes, currentNumberingSystem + "NumberElements/decimal"); - } else { - pushIgnoredContainer(qName); - } - break; case "group": + case "currencyDecimal": + case "currencyGroup": // for FormatData // copy string for later assembly into NumberElements if (currentContainer.getqName().equals("symbols")) { - pushStringEntry(qName, attributes, currentNumberingSystem + "NumberElements/group"); + pushStringEntry(qName, attributes, currentNumberingSystem + "NumberElements/" + qName); } else { pushIgnoredContainer(qName); }