diff --git a/map/gps_track_collection.cpp b/map/gps_track_collection.cpp index a6f2a7fd23..396b393680 100644 --- a/map/gps_track_collection.cpp +++ b/map/gps_track_collection.cpp @@ -36,20 +36,6 @@ GpsTrackCollection::GpsTrackCollection() { } -size_t GpsTrackCollection::Add(TItem const & item) -{ - if (!m_items.empty() && m_items.back().m_timestamp > item.m_timestamp) - { - // Invalid timestamp order - return kInvalidId; // Nothing was added - } - - m_items.emplace_back(item); - ++m_lastId; - - return m_lastId - 1; -} - std::pair GpsTrackCollection::Add(std::vector const & items) { size_t startId = m_lastId; @@ -113,11 +99,3 @@ bool GpsTrackCollection::IsEmpty() const { return m_items.empty(); } - -std::pair GpsTrackCollection::RemoveUntil(std::deque::iterator i) -{ - auto const res = std::make_pair(m_lastId - m_items.size(), - m_lastId - m_items.size() + distance(m_items.begin(), i) - 1); - m_items.erase(m_items.begin(), i); - return res; -} diff --git a/map/gps_track_collection.hpp b/map/gps_track_collection.hpp index 6319026723..3d07871bb8 100644 --- a/map/gps_track_collection.hpp +++ b/map/gps_track_collection.hpp @@ -17,11 +17,6 @@ public: /// Constructor GpsTrackCollection(); - /// Adds new point in the collection. - /// @param item - item to be added. - /// @returns the item unique identifier or kInvalidId if point has incorrect time. - size_t Add(TItem const & item); - /// Adds set of new points in the collection. /// @param items - set of items to be added. /// @returns range of identifiers of added items or pair(kInvalidId,kInvalidId) if nothing was added @@ -62,13 +57,6 @@ public: } private: - // Removes items in range [m_items.begin(), i) and returnd - // range of identifiers of removed items - std::pair RemoveUntil(std::deque::iterator i); - - // Removes items extra by timestamp - std::pair RemoveExtraItems(); - std::deque m_items; // asc. sorted by timestamp size_t m_lastId; diff --git a/map/map_tests/gps_track_collection_test.cpp b/map/map_tests/gps_track_collection_test.cpp index 389f4ab5ee..fd54c3b2b5 100644 --- a/map/map_tests/gps_track_collection_test.cpp +++ b/map/map_tests/gps_track_collection_test.cpp @@ -38,9 +38,9 @@ UNIT_TEST(GpsTrackCollection_Simple) for (size_t i = 0; i < 50; ++i) { auto info = MakeGpsTrackInfo(timestamp + i, ms::LatLon(-90 + i, -180 + i), i); - size_t addedId = collection.Add(info); - TEST_EQUAL(addedId, i, ()); - data[addedId] = info; + std::pair addedIds = collection.Add({info}); + TEST_EQUAL(addedIds.second, i, ()); + data[addedIds.second] = info; } TEST_EQUAL(50, collection.GetSize(), ());