jdk/test/java/util/Currency/PropertiesTest.java
author coffeys
Fri, 07 Sep 2012 21:22:37 +0100
changeset 13790 5b29e3921008
parent 5506 202f599c92aa
child 14697 6ed46ffc2d33
permissions -rw-r--r--
7180362: RFE: Implement date cutover functionality for currency.properties file Reviewed-by: naoto
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
13790
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
     2
 * Copyright (c) 2007, 2012, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
import java.io.*;
13790
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
    25
import java.text.*;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.util.regex.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
public class PropertiesTest {
13790
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
    30
    public static void main(String[] s) throws Exception {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
        for (int i = 0; i < s.length; i ++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
            if ("-d".equals(s[i])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
                i++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
                if (i == s.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
                    throw new RuntimeException("-d needs output file name");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
                    dump(s[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
            } else if ("-c".equals(s[i])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
                if (i+2 == s.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
                    throw new RuntimeException("-d needs two file name arguments, before and after respectively");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
                    compare(s[++i], s[++i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    private static void dump(String outfile) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
        File f = new File(outfile);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        PrintWriter pw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
            f.createNewFile();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
            pw = new PrintWriter(f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        } catch (Exception fnfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
            throw new RuntimeException(fnfe);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        for (char c1 = 'A'; c1 <= 'Z'; c1++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
            for (char c2 = 'A'; c2 <= 'Z'; c2++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
                String ctry = new StringBuilder().append(c1).append(c2).toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
                    Currency c = Currency.getInstance(new Locale("", ctry));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
                    if (c != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
                        pw.printf(Locale.ROOT, "%s=%s,%03d,%1d\n",
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
                            ctry,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
                            c.getCurrencyCode(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
                            c.getNumericCode(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
                            c.getDefaultFractionDigits());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
                } catch (IllegalArgumentException iae) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
                    // invalid country code
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        pw.flush();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        pw.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
13790
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
    80
    private static void compare(String beforeFile, String afterFile) throws Exception {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        // load file contents
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        Properties before = new Properties();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        Properties after = new Properties();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            before.load(new FileReader(beforeFile));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
            after.load(new FileReader(afterFile));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        } catch (IOException ioe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            throw new RuntimeException(ioe);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        // remove the same contents from the 'after' properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        Set<String> keys = before.stringPropertyNames();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        for (String key: keys) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            String beforeVal = before.getProperty(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            String afterVal = after.getProperty(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            System.out.printf("Removing country: %s. before: %s, after: %s", key, beforeVal, afterVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            if (beforeVal.equals(afterVal)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
                after.remove(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
                System.out.printf(" --- removed\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                System.out.printf(" --- NOT removed\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        // now look at the currency.properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        String propFileName = System.getProperty("java.home") + File.separator +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
                              "lib" + File.separator + "currency.properties";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        Properties p = new Properties();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
            p.load(new FileReader(propFileName));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        } catch (IOException ioe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
            throw new RuntimeException(ioe);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        // test each replacements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        keys = p.stringPropertyNames();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        Pattern propertiesPattern =
13790
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   118
            Pattern.compile("([A-Z]{3})\\s*,\\s*(\\d{3})\\s*,\\s*" +
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   119
                "([0-3])\\s*,?\\s*(\\d{4}-\\d{2}-\\d{2}T\\d{2}:" +
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   120
                "\\d{2}:\\d{2})?");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        for (String key: keys) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
            String val = p.getProperty(key);
13790
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   123
            try {
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   124
                if (countOccurrences(val, ',') == 3 && !isPastCutoverDate(val)) {
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   125
                    System.out.println("Skipping since date is in future");
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   126
                    continue; // skip since date in future (no effect)
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   127
                }
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   128
            } catch (ParseException pe) {
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   129
                // swallow - currency class should not honour this value
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   130
                continue;
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   131
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            String afterVal = after.getProperty(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            System.out.printf("Testing key: %s, val: %s... ", key, val);
13790
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   134
            System.out.println("AfterVal is : " + afterVal);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
            Matcher m = propertiesPattern.matcher(val.toUpperCase(Locale.ROOT));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
            if (!m.find()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
                // format is not recognized.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
                System.out.printf("Format is not recognized.\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
                if (afterVal != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
                    throw new RuntimeException("Currency data replacement for "+key+" failed: It was incorrectly altered to "+afterVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
                // ignore this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
            Matcher mAfter = propertiesPattern.matcher(afterVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            mAfter.find();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            String code = m.group(1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
            String codeAfter = mAfter.group(1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
            int numeric = Integer.parseInt(m.group(2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
            int numericAfter = Integer.parseInt(mAfter.group(2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
            int fraction = Integer.parseInt(m.group(3));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
            int fractionAfter = Integer.parseInt(mAfter.group(3));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
            if (code.equals(codeAfter) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                (numeric == numericAfter)&&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                (fraction == fractionAfter)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                after.remove(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
                throw new RuntimeException("Currency data replacement for "+key+" failed: actual: (alphacode: "+codeAfter+", numcode: "+numericAfter+", fraction: "+fractionAfter+"), expected:  (alphacode: "+code+", numcode: "+numeric+", fraction: "+fraction+")");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
            System.out.printf("Success!\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        if (!after.isEmpty()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
            StringBuilder sb = new StringBuilder()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
                .append("Currency data replacement failed.  Unnecessary modification was(were) made for the following currencies:\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
            keys = after.stringPropertyNames();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            for (String key : keys) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                sb.append("    country: ")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
                .append(key)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                .append(" currency: ")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                .append(after.getProperty(key))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                .append("\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
            throw new RuntimeException(sb.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    }
13790
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   179
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   180
    private static boolean isPastCutoverDate(String s)
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   181
            throws IndexOutOfBoundsException, NullPointerException, ParseException {
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   182
        String dateString = s.substring(s.lastIndexOf(',')+1, s.length()).trim();
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   183
        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss", Locale.ROOT);
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   184
        format.setTimeZone(TimeZone.getTimeZone("GMT"));
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   185
        format.setLenient(false);
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   186
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   187
        long time = format.parse(dateString).getTime();
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   188
        if (System.currentTimeMillis() - time >= 0L) {
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   189
            return true;
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   190
        } else {
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   191
            return false;
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   192
        }
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   193
    }
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   194
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   195
    private static int countOccurrences(String value, char match) {
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   196
        int count = 0;
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   197
        for (char c : value.toCharArray()) {
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   198
            if (c == match) {
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   199
               ++count;
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   200
            }
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   201
        }
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   202
        return count;
5b29e3921008 7180362: RFE: Implement date cutover functionality for currency.properties file
coffeys
parents: 5506
diff changeset
   203
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
}