diff options
-rw-r--r-- | Essentials/src/com/earth2me/essentials/utils/NumberUtil.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Essentials/src/com/earth2me/essentials/utils/NumberUtil.java b/Essentials/src/com/earth2me/essentials/utils/NumberUtil.java index c59461049..2655c111a 100644 --- a/Essentials/src/com/earth2me/essentials/utils/NumberUtil.java +++ b/Essentials/src/com/earth2me/essentials/utils/NumberUtil.java @@ -11,7 +11,7 @@ import net.ess3.api.IEssentials; public class NumberUtil { - static DecimalFormat threeDPlaces = new DecimalFormat("#,###.###"); + static DecimalFormat twoDPlaces = new DecimalFormat("#,###.##"); static DecimalFormat currencyFormat = new DecimalFormat("#0.00", DecimalFormatSymbols.getInstance(Locale.US)); public static String shortCurrency(final BigDecimal value, final IEssentials ess) @@ -21,8 +21,8 @@ public class NumberUtil public static String formatDouble(final double value) { - threeDPlaces.setRoundingMode(RoundingMode.HALF_UP); - return threeDPlaces.format(value); + twoDPlaces.setRoundingMode(RoundingMode.HALF_UP); + return twoDPlaces.format(value); } public static String formatAsCurrency(final BigDecimal value) |