From 9c80430eea071be981e793fd5949c22f708b2cf6 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Fri, 28 Jan 2022 11:27:31 -0500 Subject: [PATCH] LibCore: Remove time zone from default format string The default format string is used in many applications/services like FileManager/FileSystemAccessServer. Showing the time zone in e.g. the last modified time for every file in FileManager is feeling a bit over the top, so let's revert this change and assume the user is smart enough to know what time zone they are in. --- Userland/Libraries/LibCore/DateTime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibCore/DateTime.h b/Userland/Libraries/LibCore/DateTime.h index 628dd7e343..30ac5227af 100644 --- a/Userland/Libraries/LibCore/DateTime.h +++ b/Userland/Libraries/LibCore/DateTime.h @@ -30,7 +30,7 @@ public: bool is_leap_year() const; void set_time(int year, int month = 1, int day = 1, int hour = 0, int minute = 0, int second = 0); - String to_string(const String& format = "%Y-%m-%d %H:%M:%S %Z") const; + String to_string(const String& format = "%Y-%m-%d %H:%M:%S") const; static DateTime create(int year, int month = 1, int day = 1, int hour = 0, int minute = 0, int second = 0); static DateTime now();