mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2025-01-06 15:44:49 +08:00
Fixed TimeAmountFormatter 0s formatting
This commit is contained in:
parent
93600b74ed
commit
ad7f8c5631
@ -107,6 +107,7 @@ public class TimeAmountFormatter implements Formatter<Long> {
|
||||
}
|
||||
|
||||
private void appendSeconds(StringBuilder builder, long seconds, long minutes, long hours, String fHours, String fMinutes, String fSeconds) {
|
||||
if (seconds != 0 || fSeconds.contains(ZERO_PH)) {
|
||||
String s = fSeconds.replace(SECONDS_PH, String.valueOf(seconds));
|
||||
if (minutes == 0 && s.contains(MINUTES_PH)) {
|
||||
if (hours == 0 && fMinutes.contains(HOURS_PH)) {
|
||||
@ -120,6 +121,7 @@ public class TimeAmountFormatter implements Formatter<Long> {
|
||||
}
|
||||
builder.append(s);
|
||||
}
|
||||
}
|
||||
|
||||
private void appendDays(StringBuilder builder, long days) {
|
||||
String singular = config.get(FormatSettings.DAY);
|
||||
|
@ -114,7 +114,7 @@ class TimeAmountFormatterDefaultTest {
|
||||
|
||||
@Test
|
||||
void exampleZero() {
|
||||
String expected = "-";
|
||||
String expected = "0s";
|
||||
|
||||
long ms = 0L;
|
||||
String result = underTest.apply(ms);
|
||||
|
@ -112,7 +112,7 @@ class TimeAmountFormatterExtraZerosTest {
|
||||
|
||||
@Test
|
||||
void exampleZero() {
|
||||
String expected = "-";
|
||||
String expected = "00:00:00";
|
||||
|
||||
long ms = 0L;
|
||||
String result = underTest.apply(ms);
|
||||
|
Loading…
Reference in New Issue
Block a user