1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:18:11 +00:00

Kernel/Graphics: Remove unused overloaded write methods of Console

If we happen to print a string, we could use a StringView instead. For
now, let's remove them entirely.
This commit is contained in:
Liav A 2021-05-28 13:11:34 +03:00 committed by Linus Groh
parent 01d7c1b722
commit e8d85b0694
5 changed files with 1 additions and 46 deletions

View file

@ -33,9 +33,7 @@ public:
virtual void clear(size_t x, size_t y, size_t length) const override;
virtual void write(size_t x, size_t y, char ch, Color background, Color foreground) const override;
virtual void write(size_t x, size_t y, String cstring, Color background, Color foreground) const override;
virtual void write(size_t x, size_t y, char ch) const override;
virtual void write(size_t x, size_t y, String) const override;
virtual void write(char ch) const override;
virtual void enable() override;