diff options
author | Robert Schuster <thebohemian@gmx.net> | 2008-09-04 01:05:37 +0000 |
---|---|---|
committer | Robert Schuster <thebohemian@gmx.net> | 2008-09-04 01:05:37 +0000 |
commit | 3c20604cd26ca8da11ac9afb669629c20355c4e4 (patch) | |
tree | 06016334c0262247a71ad9671576e94880fcc6dc /packages/classpath/files/decimalformat.patch | |
parent | 32d41843d7661e710d0dae6fc38a857210f74747 (diff) | |
parent | a9ea848e3fb968714727833ba2b412ff49365555 (diff) |
merge of 'afb6c3c64da628a593ffe6ee1c8fc8c62affa93f'
and 'e3764e63c962032848edc5b4ea1e787aec87c16b'
Diffstat (limited to 'packages/classpath/files/decimalformat.patch')
-rw-r--r-- | packages/classpath/files/decimalformat.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/packages/classpath/files/decimalformat.patch b/packages/classpath/files/decimalformat.patch new file mode 100644 index 0000000000..4997523830 --- /dev/null +++ b/packages/classpath/files/decimalformat.patch @@ -0,0 +1,31 @@ +Index: classpath-0.97.2/java/text/DecimalFormat.java +=================================================================== +--- classpath-0.97.2.orig/java/text/DecimalFormat.java ++++ classpath-0.97.2/java/text/DecimalFormat.java +@@ -1296,7 +1296,7 @@ public class DecimalFormat extends Numbe + currencySymbol = this.symbols.getCurrencySymbol(); + + // if \u00A4 is doubled, we use the international currency symbol +- if (i < len && pattern.charAt(i + 1) == '\u00A4') ++ if ((i + 1) < len && pattern.charAt(i + 1) == '\u00A4') + { + currencySymbol = this.symbols.getInternationalCurrencySymbol(); + i++; +@@ -1320,7 +1320,7 @@ public class DecimalFormat extends Numbe + else if (ch == '\'') + { + // QUOTE +- if (i < len && pattern.charAt(i + 1) == '\'') ++ if ((i + 1) < len && pattern.charAt(i + 1) == '\'') + { + // we need to add ' to the buffer + buffer.append(ch); +@@ -1692,7 +1692,7 @@ public class DecimalFormat extends Numbe + else if (ch == '\'') + { + // QUOTE +- if (i < len && pattern.charAt(i + 1) == '\'') ++ if ((i + 1) < len && pattern.charAt(i + 1) == '\'') + { + // we need to add ' to the buffer + buffer.append(ch); |