Small fix

This commit is contained in:
M66B 2023-12-21 18:37:11 +01:00
parent ee508cc4f6
commit 4f25a69998
1 changed files with 1 additions and 1 deletions

View File

@ -2308,7 +2308,7 @@ public class Helper {
return (sign < 0 ? "-" : "") +
(days > 0 ? days + " " : "") +
DateUtils.formatElapsedTime(seconds) +
(ms == 0 ? "" : ". " + ms);
(ms == 0 ? "" : "." + ms);
}
static String formatNumber(Integer number, long max, NumberFormat nf) {