< prev index next >

make/jdk/src/classes/build/tools/generatecurrencydata/GenerateCurrencyData.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2001, 2016, 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2001, 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 * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 320,330 **** specialCaseOldCurrenciesNumericCode[specialCaseCount] = getNumericCode(oldCurrency); specialCaseNewCurrencies[specialCaseCount] = newCurrency; specialCaseNewCurrenciesDefaultFractionDigits[specialCaseCount] = getDefaultFractionDigits(newCurrency); specialCaseNewCurrenciesNumericCode[specialCaseCount] = getNumericCode(newCurrency); } ! specialCaseMap.put(currencyInfo, new Integer(specialCaseCount)); return specialCaseCount++; } private static void buildOtherTables() { if (validCurrencyCodes.length() % 7 != 6) { --- 320,330 ---- specialCaseOldCurrenciesNumericCode[specialCaseCount] = getNumericCode(oldCurrency); specialCaseNewCurrencies[specialCaseCount] = newCurrency; specialCaseNewCurrenciesDefaultFractionDigits[specialCaseCount] = getDefaultFractionDigits(newCurrency); specialCaseNewCurrenciesNumericCode[specialCaseCount] = getNumericCode(newCurrency); } ! specialCaseMap.put(currencyInfo, Integer.valueOf(specialCaseCount)); return specialCaseCount++; } private static void buildOtherTables() { if (validCurrencyCodes.length() % 7 != 6) {
< prev index next >