From: Stephan Beyer Date: Tue, 7 Jul 2020 07:36:30 +0000 (+0200) Subject: Remove redundant initialization of HttpCredentials::_keychainMigration X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~222^2^2~98 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=293be2c2e667483737f7850bbe2e132b40211b8f;p=nextcloud-desktop.git Remove redundant initialization of HttpCredentials::_keychainMigration The value gets already initialized by default member initialization, so there is no need to set it again. Signed-off-by: Stephan Beyer --- diff --git a/src/libsync/creds/httpcredentials.cpp b/src/libsync/creds/httpcredentials.cpp index d946d7fc7..a5e74da51 100644 --- a/src/libsync/creds/httpcredentials.cpp +++ b/src/libsync/creds/httpcredentials.cpp @@ -114,7 +114,6 @@ HttpCredentials::HttpCredentials(const QString &user, const QString &password, c , _ready(true) , _clientSslKey(key) , _clientSslCertificate(certificate) - , _keychainMigration(false) , _retryOnKeyChainError(false) { }