diff --git a/src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp b/src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp index 28eefbf415..b4964c6c77 100644 --- a/src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp +++ b/src/apps/debugger/user_interface/cli/CommandLineUserInterface.cpp @@ -241,13 +241,6 @@ CommandLineUserInterface::Run() } -/*static*/ status_t -CommandLineUserInterface::_InputLoopEntry(void* data) -{ - return ((CommandLineUserInterface*)data)->_InputLoop(); -} - - status_t CommandLineUserInterface::_InputLoop() { diff --git a/src/apps/debugger/user_interface/cli/CommandLineUserInterface.h b/src/apps/debugger/user_interface/cli/CommandLineUserInterface.h index c6d68acfe0..7fbfd214ae 100644 --- a/src/apps/debugger/user_interface/cli/CommandLineUserInterface.h +++ b/src/apps/debugger/user_interface/cli/CommandLineUserInterface.h @@ -63,7 +63,6 @@ private: friend struct HelpCommand; private: - static status_t _InputLoopEntry(void* data); status_t _InputLoop(); status_t _RegisterCommands();