mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-12-23 01:27:40 +01:00
Round to gc output to 2 dp.
This commit is contained in:
parent
470f4c1b3e
commit
b0e165546e
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user