Remove an unused function

This commit is contained in:
Thomas Goyne 2016-03-09 14:10:52 -08:00
parent b920f62ca5
commit a4298dd92c
2 changed files with 0 additions and 8 deletions

View File

@ -487,13 +487,6 @@ void RealmCoordinator::open_helper_shared_group()
} }
} }
void RealmCoordinator::move_new_notifiers_to_main()
{
m_notifiers.reserve(m_notifiers.size() + m_new_notifiers.size());
std::move(m_new_notifiers.begin(), m_new_notifiers.end(), std::back_inserter(m_notifiers));
m_new_notifiers.clear();
}
void RealmCoordinator::advance_to_ready(Realm& realm) void RealmCoordinator::advance_to_ready(Realm& realm)
{ {
decltype(m_notifiers) notifiers; decltype(m_notifiers) notifiers;

View File

@ -138,7 +138,6 @@ private:
void run_async_notifiers(); void run_async_notifiers();
void open_helper_shared_group(); void open_helper_shared_group();
void move_new_notifiers_to_main();
void advance_helper_shared_group_to_latest(); void advance_helper_shared_group_to_latest();
void clean_up_dead_notifiers(); void clean_up_dead_notifiers();
}; };