Increased the number of digits to output.


git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1148312 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2011-07-19 13:33:29 +00:00
parent c8027556c1
commit 79bff2247f
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ public class CompositeFormat {
*/
public static NumberFormat getDefaultNumberFormat(final Locale locale) {
final NumberFormat nf = NumberFormat.getInstance(locale);
nf.setMaximumFractionDigits(2);
nf.setMaximumFractionDigits(8);
return nf;
}