From 5eef1ef00d2aee1e92b3520c061eeb0e3aab8f4e Mon Sep 17 00:00:00 2001 From: Viktor Govako Date: Tue, 19 Nov 2024 13:51:16 -0300 Subject: [PATCH] Removed outdated functions. Signed-off-by: Viktor Govako --- map/framework.cpp | 2 ++ map/framework.hpp | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/map/framework.cpp b/map/framework.cpp index 6e6e0325c0..dc68173bbb 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -2377,6 +2377,7 @@ string Framework::GenerateApiBackUrl(ApiMarkPoint const & point) const return res; } +/* bool Framework::IsDataVersionUpdated() { int64_t storedVersion; @@ -2392,6 +2393,7 @@ void Framework::UpdateSavedDataVersion() { settings::Set("DataVersion", m_storage.GetCurrentDataVersion()); } +*/ int64_t Framework::GetCurrentDataVersion() const { return m_storage.GetCurrentDataVersion(); } diff --git a/map/framework.hpp b/map/framework.hpp index 0d0e1157cb..e99fbbb855 100644 --- a/map/framework.hpp +++ b/map/framework.hpp @@ -671,8 +671,8 @@ private: public: /// @name Data versions - bool IsDataVersionUpdated(); - void UpdateSavedDataVersion(); + // bool IsDataVersionUpdated(); + // void UpdateSavedDataVersion(); int64_t GetCurrentDataVersion() const; public: