diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-11-06 13:56:11 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-11-06 13:58:08 +0100 |
commit | e33bbdb6ba860f4d570d06516090df0e6cf3e91a (patch) | |
tree | 4780bfa7c66dacdfd9e3e7f8d71f27efa46ba8e5 /Kernel | |
parent | 14dc323f4d76da52c810767db2baf6a7e06a2578 (diff) | |
download | serenity-e33bbdb6ba860f4d570d06516090df0e6cf3e91a.zip |
AK: Remove unused AK::not_implemented()
Whatever this was supposed to be, it was ironically... not implemented.
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/TTY/VirtualConsole.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/TTY/VirtualConsole.cpp b/Kernel/TTY/VirtualConsole.cpp index 36566cf418..78d72f1421 100644 --- a/Kernel/TTY/VirtualConsole.cpp +++ b/Kernel/TTY/VirtualConsole.cpp @@ -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(); |