Remove an unused function
This commit is contained in:
parent
b920f62ca5
commit
a4298dd92c
|
@ -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;
|
||||||
|
|
|
@ -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();
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue