Remove unused members

This commit is contained in:
Vinnie Falco
2013-07-08 07:57:08 -07:00
parent 9746861e46
commit 87f3c1e597
2 changed files with 0 additions and 8 deletions

View File

@@ -43,11 +43,6 @@ public:
return mIOService; return mIOService;
} }
boost::asio::io_service& getAuxService ()
{
return mAuxService;
}
LedgerMaster& getLedgerMaster () LedgerMaster& getLedgerMaster ()
{ {
return mLedgerMaster; return mLedgerMaster;
@@ -214,7 +209,6 @@ private:
boost::asio::io_service mIOService; boost::asio::io_service mIOService;
boost::asio::io_service mAuxService; boost::asio::io_service mAuxService;
boost::asio::io_service::work mIOWork; boost::asio::io_service::work mIOWork;
boost::asio::io_service::work mAuxWork;
boost::recursive_mutex mMasterLock; boost::recursive_mutex mMasterLock;
@@ -282,7 +276,6 @@ Application::Application ()
#endif #endif
, mIOService ((theConfig.NODE_SIZE >= 2) ? 2 : 1) , mIOService ((theConfig.NODE_SIZE >= 2) ? 2 : 1)
, mIOWork (mIOService) , mIOWork (mIOService)
, mAuxWork (mAuxService)
, mNetOps (mIOService, &mLedgerMaster) , mNetOps (mIOService, &mLedgerMaster)
, mTempNodeCache ("NodeCache", 16384, 90) , mTempNodeCache ("NodeCache", 16384, 90)
, mHashedObjectStore (16384, 300) , mHashedObjectStore (16384, 300)

View File

@@ -54,7 +54,6 @@ public:
virtual boost::recursive_mutex& getMasterLock () = 0; virtual boost::recursive_mutex& getMasterLock () = 0;
virtual boost::asio::io_service& getIOService () = 0; virtual boost::asio::io_service& getIOService () = 0;
virtual boost::asio::io_service& getAuxService () = 0;
virtual NodeCache& getTempNodeCache () = 0; virtual NodeCache& getTempNodeCache () = 0;
virtual SLECache& getSLECache () = 0; virtual SLECache& getSLECache () = 0;