Updated on 2026-08-14

This commit is contained in:
Tangem 2018-06-28 15:45:38 +03:00
parent 4e42025453
commit df4a8d6dc3
6 changed files with 40 additions and 7 deletions

View file

@ -25,7 +25,8 @@ public class FormatUtil {
symbols.setDecimalSeparator('.');
String pattern = "#0.######";
DecimalFormat myFormatter = new DecimalFormat(pattern, symbols);
// DecimalFormat myFormatter = new DecimalFormat(pattern, symbols);
DecimalFormat myFormatter = new DecimalFormat(pattern);
myFormatter.setParseBigDecimal(true);