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