remove unused Node::_isAlive cruft

This commit is contained in:
Andrew Meadows 2017-04-25 09:41:21 -07:00 committed by ZappoMan
parent 75c2776836
commit 08972da843
2 changed files with 0 additions and 5 deletions

View file

@ -56,7 +56,6 @@ Node::Node(const QUuid& uuid, NodeType_t type, const HifiSockAddr& publicSocket,
NetworkPeer(uuid, publicSocket, localSocket, parent),
_type(type),
_connectionSecret(connectionSecret),
_isAlive(true),
_pingMs(-1), // "Uninitialized"
_clockSkewUsec(0),
_mutex(),

View file

@ -54,9 +54,6 @@ public:
NodeData* getLinkedData() const { return _linkedData.get(); }
void setLinkedData(std::unique_ptr<NodeData> linkedData) { _linkedData = std::move(linkedData); }
bool isAlive() const { return _isAlive; }
void setAlive(bool isAlive) { _isAlive = isAlive; }
int getPingMs() const { return _pingMs; }
void setPingMs(int pingMs) { _pingMs = pingMs; }
@ -92,7 +89,6 @@ private:
QUuid _connectionSecret;
std::unique_ptr<NodeData> _linkedData;
bool _isAlive;
int _pingMs;
qint64 _clockSkewUsec;
QMutex _mutex;