impl: ldp toString - date and timezone display

This commit is contained in:
Václav Přibík
2025-10-18 12:23:53 +02:00
parent 25c09c95d4
commit 8fdc0a6d6c

View File

@@ -109,4 +109,9 @@ public class LocalDayPlanImpl implements LocalDayPlan {
throw new UnsupportedOperationException("Unimplemented method 'nrOfAppointments'"); throw new UnsupportedOperationException("Unimplemented method 'nrOfAppointments'");
} }
@Override
public String toString() {
return String.format("Day: %s, TimeZone: %s", day.date(), day().zone());
}
} }