PixelPaint: Remove unused Image::write_to_file() method

This seems to be a remnant from before FileSystemAccessClient was used.
This commit is contained in:
Sam Atkins 2022-04-06 17:36:06 +01:00 committed by Tim Flynn
commit aee52a458b
Notes: sideshowbarker 2024-07-17 06:49:42 +09:00
2 changed files with 0 additions and 15 deletions

View file

@ -73,7 +73,6 @@ public:
void paint_into(GUI::Painter&, Gfx::IntRect const& dest_rect) const;
void serialize_as_json(JsonObjectSerializer<StringBuilder>& json) const;
ErrorOr<void> write_to_file(String const& file_path) const;
ErrorOr<void> export_bmp_to_file(Core::File&, bool preserve_alpha_channel);
ErrorOr<void> export_png_to_file(Core::File&, bool preserve_alpha_channel);
ErrorOr<void> export_qoi_to_file(Core::File&) const;