Remove trailing whitespace.

This commit is contained in:
2026-02-27 13:10:47 +01:00
parent 513e25b3df
commit 668fc0f63d

View File

@@ -87,8 +87,8 @@ public class VacCalc extends JFrame {
private void updateMonthLabel() { private void updateMonthLabel() {
YearMonth current = calendarPanel.getCurrentMonth(); YearMonth current = calendarPanel.getCurrentMonth();
monthLabel.setText(String.format("%s %d", monthLabel.setText(String.format("%s %d",
current.getMonth().toString(), current.getMonth().toString(),
current.getYear())); current.getYear()));
} }