diff --git a/src/system/setting_helpers.cpp b/src/system/setting_helpers.cpp index dae567f8f..cd84a0930 100644 --- a/src/system/setting_helpers.cpp +++ b/src/system/setting_helpers.cpp @@ -572,13 +572,6 @@ bool CIPChangeNotifier::changeNotify(const neutrino_locale_t, void * Data) } #endif -bool CConsoleDestChangeNotifier::changeNotify(const neutrino_locale_t, void * Data) -{ - g_settings.uboot_console = *(int *)Data; - - return true; -} - bool CTimingSettingsNotifier::changeNotify(const neutrino_locale_t OptionName, void *) { for (int i = 0; i < SNeutrinoSettings::TIMING_SETTING_COUNT; i++) diff --git a/src/system/setting_helpers.h b/src/system/setting_helpers.h index e3abce3fa..87f960d52 100644 --- a/src/system/setting_helpers.h +++ b/src/system/setting_helpers.h @@ -194,12 +194,6 @@ class CIPChangeNotifier : public CChangeObserver bool changeNotify(const neutrino_locale_t, void * Data); }; -class CConsoleDestChangeNotifier : public CChangeObserver -{ - public: - bool changeNotify(const neutrino_locale_t, void * Data); -}; - class CTimingSettingsNotifier : public CChangeObserver { public: