Remove redundant initialization of HttpCredentials::_keychainMigration
authorStephan Beyer <s-beyer@gmx.net>
Tue, 7 Jul 2020 07:36:30 +0000 (09:36 +0200)
committerKevin Ottens <ervin@ipsquad.net>
Wed, 8 Jul 2020 12:08:41 +0000 (14:08 +0200)
The value gets already initialized by default member initialization,
so there is no need to set it again.

Signed-off-by: Stephan Beyer <s-beyer@gmx.net>
src/libsync/creds/httpcredentials.cpp

index d946d7fc745f25cbdb810daaf7dfd03459fe475b..a5e74da51b27856af33614eea40257cd55605672 100644 (file)
@@ -114,7 +114,6 @@ HttpCredentials::HttpCredentials(const QString &user, const QString &password, c
     , _ready(true)
     , _clientSslKey(key)
     , _clientSslCertificate(certificate)
-    , _keychainMigration(false)
     , _retryOnKeyChainError(false)
 {
 }