diff --git a/src/config/Config.cpp b/src/config/Config.cpp index 5a392bb..df96970 100644 --- a/src/config/Config.cpp +++ b/src/config/Config.cpp @@ -201,10 +201,6 @@ nlohmann::json Config::GetNestedJson() { return mNestedJson; } -nlohmann::json Config::GetFlattenedJson() { - return mFlattenedJson; -} - bool Config::IsNewInstance() { return mIsNewInstance; } diff --git a/src/config/Config.h b/src/config/Config.h index 8c127f6..4859949 100644 --- a/src/config/Config.h +++ b/src/config/Config.h @@ -62,7 +62,6 @@ class Config { void Reload(); void Save(); nlohmann::json GetNestedJson(); - nlohmann::json GetFlattenedJson(); bool IsNewInstance(); AudioBackend GetCurrentAudioBackend();