removed unused tickWatchers()

This commit is contained in:
mr-alice 2016-09-18 22:14:25 +02:00
parent 9cf950472c
commit 0579fb03fa
2 changed files with 0 additions and 9 deletions

View File

@ -154,10 +154,6 @@ RsServiceInfo p3FileDatabase::getServiceInfo()
}
int p3FileDatabase::tick()
{
// tick the watchers, possibly create new ones if additional friends do connect.
//
tickWatchers();
// tick the input/output list of update items and process them
//
tickRecv() ;
@ -262,10 +258,6 @@ void p3FileDatabase::stopThreads()
#endif
}
void p3FileDatabase::tickWatchers()
{
}
bool p3FileDatabase::saveList(bool &cleanup, std::list<RsItem *>& sList)
{
cleanup = true;

View File

@ -153,7 +153,6 @@ class p3FileDatabase: public p3Service, public p3Config, public ftSearch //, pub
void cleanup();
void tickRecv();
void tickSend();
void tickWatchers();
private:
p3ServiceControl *mServCtrl ;