Round to gc output to 2 dp.

This commit is contained in:
KHobbits 2014-03-03 08:34:43 +00:00
parent 470f4c1b3e
commit b0e165546e

View File

@ -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)