Remove Journal from most Stoppable overrides

This commit is contained in:
Vinnie Falco
2013-10-04 00:13:25 -07:00
parent 48eb92e366
commit a2aa938e10
20 changed files with 76 additions and 82 deletions

View File

@@ -255,19 +255,19 @@ public:
// Stoppable
//
void onPrepare (Journal journal)
void onPrepare ()
{
#if RIPPLE_USE_NEW_VALIDATORS
journal.info << "Validators preparing";
m_journal.info << "Validators preparing";
addRPCHandlers();
#endif
}
void onStart (Journal journal)
void onStart ()
{
#if RIPPLE_USE_NEW_VALIDATORS
journal.info << "Validators starting";
m_journal.info << "Validators starting";
// Do this late so the sources have a chance to be added.
m_queue.dispatch (bind (&ManagerImp::setCheckSources, this));
@@ -276,9 +276,9 @@ public:
#endif
}
void onStop (Journal journal)
void onStop ()
{
journal.info << "Validators stopping";
m_journal.info << "Validators stopping";
if (this->Thread::isThreadRunning())
{