From c91c504989c752d3a9f77e937caee6a353b63f07 Mon Sep 17 00:00:00 2001 From: Kenix3 Date: Wed, 11 Dec 2024 21:50:46 -0500 Subject: [PATCH] Remove Config.GetFlattenedJson() --- src/config/Config.cpp | 4 ---- src/config/Config.h | 1 - 2 files changed, 5 deletions(-) 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();