increase friendly number format range

This commit is contained in:
Kiran Hart 2022-01-17 16:31:49 -05:00
parent 08e0e0ead0
commit 9aa111cc73

View File

@ -81,7 +81,7 @@ public class AuctionAPI {
if (value <= 0) return "0";
int power;
String suffix = " KMBTQ";
String suffix = " KMBTQPEZY";
String formattedNumber = "";
NumberFormat formatter = new DecimalFormat("#,###.#");