Skip to content

Commit

Permalink
AK: Remove unused AK::not_implemented()
Browse files Browse the repository at this point in the history
Whatever this was supposed to be, it was ironically... not implemented.
  • Loading branch information
awesomekling committed Nov 6, 2019
1 parent 14dc323 commit e33bbdb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
7 changes: 0 additions & 7 deletions AK/Assertions.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,3 @@

#endif

namespace AK {

inline void not_implemented() { ASSERT(false); }

}

using AK::not_implemented;
4 changes: 2 additions & 2 deletions Kernel/TTY/VirtualConsole.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit e33bbdb

Please sign in to comment.