From 86b1821251fed788787098b844520119ffc4678d Mon Sep 17 00:00:00 2001 From: Kevin Ottens Date: Mon, 25 May 2020 20:12:09 +0200 Subject: [PATCH] Remove redundant initializer This is the same value than the initializer value in the header, no need to repeat it. Signed-off-by: Kevin Ottens --- src/libsync/abstractnetworkjob.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libsync/abstractnetworkjob.cpp b/src/libsync/abstractnetworkjob.cpp index ca64361d7..b5c098bd1 100644 --- a/src/libsync/abstractnetworkjob.cpp +++ b/src/libsync/abstractnetworkjob.cpp @@ -52,7 +52,6 @@ AbstractNetworkJob::AbstractNetworkJob(AccountPtr account, const QString &path, , _ignoreCredentialFailure(false) , _reply(nullptr) , _path(path) - , _redirectCount(0) { _timer.setSingleShot(true); _timer.setInterval((httpTimeout ? httpTimeout : 300) * 1000); // default to 5 minutes. -- 2.39.5