Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2015-03-31 17:04:11 +0300
committerMarek Safar <marek.safar@gmail.com>2015-03-31 17:06:07 +0300
commit687b8bc0f31ea30a07ed8272ee8db519da07c27a (patch)
tree04d212fbacf8966a10d304f6997d44e163c69438 /tools
parentb65b99d6c23cce64446344a93399eaa5a96360ef (diff)
[corlib] NumberFormatInfo from reference sources
Diffstat (limited to 'tools')
-rw-r--r--tools/locale-builder/NumberFormatEntry.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/locale-builder/NumberFormatEntry.cs b/tools/locale-builder/NumberFormatEntry.cs
index 5d4f1d0d817..6800e0124ab 100644
--- a/tools/locale-builder/NumberFormatEntry.cs
+++ b/tools/locale-builder/NumberFormatEntry.cs
@@ -89,8 +89,6 @@ namespace Mono.Tools.LocaleBuilder
builder.Append (EncodeStringIdx (CurrencyDecimalSeparator) + ", ");
builder.Append (EncodeStringIdx (CurrencyGroupSeparator) + ", ");
- builder.Append (EncodeStringIdx (PercentDecimalSeparator) + ", ");
- builder.Append (EncodeStringIdx (PercentGroupSeparator) + ", ");
builder.Append (EncodeStringIdx (NumberDecimalSeparator) + ", ");
builder.Append (EncodeStringIdx (NumberGroupSeparator) + ", ");
@@ -111,13 +109,10 @@ namespace Mono.Tools.LocaleBuilder
builder.Append (NumberNegativePattern + ", ");
builder.Append (CurrencyDecimalDigits + ", ");
- builder.Append (PercentDecimalDigits + ", ");
builder.Append (NumberDecimalDigits + ", ");
AppendGroupSizes (builder, CurrencyGroupSizes);
builder.Append (", ");
- AppendGroupSizes (builder, PercentGroupSizes);
- builder.Append (", ");
AppendGroupSizes (builder, NumberGroupSizes);
builder.Append ('}');