remove unused boolean for signalling protocol mismatch

This commit is contained in:
Stephen Birarda 2016-06-28 10:32:43 -07:00
parent f9b3165350
commit 18a1f74c37
2 changed files with 0 additions and 2 deletions

View file

@ -117,7 +117,6 @@ void DomainHandler::hardReset() {
_hostname = QString(); _hostname = QString();
_sockAddr.clear(); _sockAddr.clear();
_hasSignalledProtocolMismatch = false;
_domainConnectionRefusals.clear(); _domainConnectionRefusals.clear();
_hasCheckedForAccessToken = false; _hasCheckedForAccessToken = false;

View file

@ -145,7 +145,6 @@ private:
QTimer _settingsTimer; QTimer _settingsTimer;
QSet<QString> _domainConnectionRefusals; QSet<QString> _domainConnectionRefusals;
bool _hasSignalledProtocolMismatch { false };
bool _hasCheckedForAccessToken { false }; bool _hasCheckedForAccessToken { false };
int _connectionDenialsSinceKeypairRegen { 0 }; int _connectionDenialsSinceKeypairRegen { 0 };