From 32ad77b8c7e2ac4d4a7ee5f27bd53f4df8b229d3 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Wed, 24 May 2023 08:44:12 -0400 Subject: [PATCH] image: Remove no-longer-needed comment The future is now, and Bitmap::load_from_file() can't do the things that `image` now does. --- Userland/Utilities/image.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Userland/Utilities/image.cpp b/Userland/Utilities/image.cpp index 4de6a49da9..15157ffd37 100644 --- a/Userland/Utilities/image.cpp +++ b/Userland/Utilities/image.cpp @@ -53,8 +53,6 @@ ErrorOr serenity_main(Main::Arguments arguments) return 1; } - // This uses ImageDecoder instead of Bitmap::load_from_file() to have more control - // over selecting a frame, access color profile data, and so on in the future. auto frame = TRY(decoder->frame(frame_index)).image; Optional icc_data = TRY(decoder->icc_data());