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() 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 // tick the input/output list of update items and process them
// //
tickRecv() ; tickRecv() ;
@ -262,10 +258,6 @@ void p3FileDatabase::stopThreads()
#endif #endif
} }
void p3FileDatabase::tickWatchers()
{
}
bool p3FileDatabase::saveList(bool &cleanup, std::list<RsItem *>& sList) bool p3FileDatabase::saveList(bool &cleanup, std::list<RsItem *>& sList)
{ {
cleanup = true; cleanup = true;

View file

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