summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKHobbits <rob@khobbits.co.uk>2014-03-03 08:34:43 +0000
committerKHobbits <rob@khobbits.co.uk>2014-03-03 08:34:43 +0000
commitb0e165546ec2548642f10891ca619a91152cae80 (patch)
tree3d5b88031c7dbeee96c8fbb2205f5bc5ec8fb4a4
parent470f4c1b3eb34a2f25be128c8c5637934c838c37 (diff)
downloadEssentials-b0e165546ec2548642f10891ca619a91152cae80.tar
Essentials-b0e165546ec2548642f10891ca619a91152cae80.tar.gz
Essentials-b0e165546ec2548642f10891ca619a91152cae80.tar.lz
Essentials-b0e165546ec2548642f10891ca619a91152cae80.tar.xz
Essentials-b0e165546ec2548642f10891ca619a91152cae80.zip
Round to gc output to 2 dp.
-rw-r--r--Essentials/src/com/earth2me/essentials/utils/NumberUtil.java6
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)