--- old/make/src/classes/build/tools/cldrconverter/AbstractLDMLHandler.java 2015-06-23 13:27:41.210217125 -0700 +++ new/make/src/classes/build/tools/cldrconverter/AbstractLDMLHandler.java 2015-06-23 13:27:40.837211088 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2015, 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 @@ -122,6 +122,15 @@ } /** + * start an element that defines an alias entry, with the value provided by the element's alias. + */ + void pushAliasEntry(String qName, Attributes attributes, String key) { + if (!pushIfIgnored(qName, attributes)) { + currentContainer = new AliasEntry(qName, currentContainer, key); + } + } + + /** * start an element that defines a string entry, with the value provided by an attribute value. */ void pushStringEntry(String qName, Attributes attributes, String key, String value) {