Skip to content

Commit

Permalink
optional fraction digits in decimal format
Browse files Browse the repository at this point in the history
  • Loading branch information
HSGamer committed Oct 25, 2024
1 parent 41aeb9f commit 8f52265
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ private void migrateConfig() {
if (fractionDigits > 0) {
decimalFormatBuilder.append(decimalSeparator);
for (int i = 0; i < fractionDigits; i++) {
decimalFormatBuilder.append("0");
decimalFormatBuilder.append("#");
}
}
String decimalFormat = decimalFormatBuilder.toString();
Expand Down

0 comments on commit 8f52265

Please sign in to comment.