Remove unused or obsolete classes and files

This commit is contained in:
Vinnie Falco
2016-04-11 05:32:30 -04:00
parent 735c341fae
commit 203739f7a4
425 changed files with 1968 additions and 5270 deletions

View File

@@ -54,6 +54,7 @@
#include <ripple/json/json_reader.h>
#include <ripple/json/to_string.h>
#include <ripple/core/ConfigSections.h>
#include <ripple/core/DeadlineTimer.h>
#include <ripple/core/LoadFeeTrack.h>
#include <ripple/core/TimeKeeper.h>
#include <ripple/ledger/CachedSLEs.h>
@@ -72,8 +73,7 @@
#include <ripple/websocket/MakeServer.h>
#include <ripple/crypto/csprng.h>
#include <beast/asio/io_latency_probe.h>
#include <beast/module/core/text/LexicalCast.h>
#include <beast/module/core/thread/DeadlineTimer.h>
#include <ripple/beast/core/LexicalCast.h>
#include <boost/asio/signal_set.hpp>
#include <boost/optional.hpp>
#include <fstream>
@@ -237,8 +237,8 @@ supportedAmendments ();
// VFALCO TODO Move the function definitions into the class declaration
class ApplicationImp
: public Application
, public beast::RootStoppable
, public beast::DeadlineTimer::Listener
, public RootStoppable
, public DeadlineTimer::Listener
, public BasicApp
{
private:
@@ -354,14 +354,14 @@ public:
std::unique_ptr <Validations> mValidations;
std::unique_ptr <LoadManager> m_loadManager;
std::unique_ptr <TxQ> txQ_;
beast::DeadlineTimer m_sweepTimer;
beast::DeadlineTimer m_entropyTimer;
DeadlineTimer m_sweepTimer;
DeadlineTimer m_entropyTimer;
std::unique_ptr <DatabaseCon> mTxnDB;
std::unique_ptr <DatabaseCon> mLedgerDB;
std::unique_ptr <DatabaseCon> mWalletDB;
std::unique_ptr <Overlay> m_overlay;
std::vector <std::unique_ptr<beast::Stoppable>> websocketServers_;
std::vector <std::unique_ptr<Stoppable>> websocketServers_;
boost::asio::signal_set m_signals;
beast::WaitableEvent m_stop;
@@ -869,7 +869,7 @@ public:
std::exit(code);
}
void onDeadlineTimer (beast::DeadlineTimer& timer) override
void onDeadlineTimer (DeadlineTimer& timer) override
{
if (timer == m_entropyTimer)
{