mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:24:57 +00:00
icc: Remove needless use of DateTime::to_deprecated_string()
Turns out DateTime has a Formatter that prints the same thing that to_deprecated_string() returns. No behavior change.
This commit is contained in:
parent
e47e5f5ce0
commit
a0522aec90
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
outln(" device class: {}", Gfx::ICC::device_class_name(profile->device_class()));
|
||||
outln(" data color space: {}", Gfx::ICC::data_color_space_name(profile->data_color_space()));
|
||||
outln(" connection space: {}", Gfx::ICC::profile_connection_space_name(profile->connection_space()));
|
||||
outln("creation date and time: {}", Core::DateTime::from_timestamp(profile->creation_timestamp()).to_deprecated_string());
|
||||
outln("creation date and time: {}", Core::DateTime::from_timestamp(profile->creation_timestamp()));
|
||||
outln(" primary platform: {}", Gfx::ICC::primary_platform_name(profile->primary_platform()));
|
||||
|
||||
auto flags = profile->flags();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue