mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-21 11:35:53 +00:00
Remove unused members
This commit is contained in:
@@ -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)
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user