AK: Remove unused AK::not_implemented()

Whatever this was supposed to be, it was ironically... not implemented.
This commit is contained in:
Andreas Kling 2019-11-06 13:56:11 +01:00
commit e33bbdb6ba
Notes: sideshowbarker 2024-07-19 11:21:07 +09:00
2 changed files with 2 additions and 9 deletions

View file

@ -310,11 +310,11 @@ void VirtualConsole::escape$J(const Vector<unsigned>& params)
switch (mode) {
case 0:
// FIXME: Clear from cursor to end of screen.
not_implemented();
ASSERT_NOT_REACHED();
break;
case 1:
// FIXME: Clear from cursor to beginning of screen.
not_implemented();
ASSERT_NOT_REACHED();
break;
case 2:
clear();