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.
This commit is contained in:
Timothy Flynn 2022-01-28 11:27:31 -05:00 committed by Linus Groh
parent 5ca1c54c27
commit 9c80430eea
Notes: sideshowbarker 2024-07-17 20:05:00 +09:00

View File

@ -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();