Remove empty destructor

This commit is contained in:
Simon Walton 2018-05-30 13:52:26 -07:00
parent 8fb5d1b92d
commit a3324c5616
2 changed files with 0 additions and 4 deletions

View file

@ -94,9 +94,6 @@ AccountManager::AccountManager(UserAgentGetter userAgentGetter) :
const QString DOUBLE_SLASH_SUBSTITUTE = "slashslash";
const QString ACCOUNT_MANAGER_REQUESTED_SCOPE = "owner";
AccountManager::~AccountManager() {
}
void AccountManager::logout() {
// a logout means we want to delete the DataServerAccountInfo we currently have for this URL, in-memory and in file
_accountInfo = DataServerAccountInfo();

View file

@ -63,7 +63,6 @@ class AccountManager : public QObject, public Dependency {
Q_OBJECT
public:
AccountManager(UserAgentGetter userAgentGetter = DEFAULT_USER_AGENT_GETTER);
~AccountManager();
Q_INVOKABLE void sendRequest(const QString& path,
AccountManagerAuth::Type authType,