Skip to content

Commit

Permalink
Fix PostProcessInteger in System.Number (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthiasJentsch authored and josesimoes committed Sep 12, 2018
1 parent d66b36d commit 7b10260
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/System/Number.cs
Original file line number Diff line number Diff line change
Expand Up @@ -413,10 +413,10 @@ private static String PostProcessFloat(String original, char format, int precisi
result = InsertGroupSeparators(result, info);
}

result = ReplaceDecimalSeperator(result, info);
result = ReplaceNegativeSign(result, info);
result = AppendFloatTrailingZeros(result, precision, info);

result = ReplaceDecimalSeperator(result, info);
result = ReplaceNegativeSign(result, info);

return result;
}

Expand Down

0 comments on commit 7b10260

Please sign in to comment.