Remove a few empty lines for codefactor

This commit is contained in:
Emmanuel Engelhart 2022-02-13 13:35:18 +01:00
parent fba7e94a33
commit c24636772c
No known key found for this signature in database
GPG Key ID: 120B30D020B553D3
3 changed files with 1 additions and 6 deletions

View File

@ -17,7 +17,6 @@ class ContentManager : public QObject
Q_PROPERTY(QString currentLanguage MEMBER m_currentLanguage WRITE setCurrentLanguage NOTIFY currentLangChanged)
public:
explicit ContentManager(Library* library, kiwix::Downloader *downloader, QObject *parent = nullptr);
virtual ~ContentManager() {}

View File

@ -11,7 +11,6 @@ class OpdsRequestManager : public QObject
Q_OBJECT
public:
OpdsRequestManager();
~OpdsRequestManager() {}
@ -29,4 +28,4 @@ public slots:
void receiveContent();
};
#endif // OPDSREQUESTMANAGER_H
#endif // OPDSREQUESTMANAGER_H

View File

@ -11,10 +11,8 @@
UrlSchemeHandler::UrlSchemeHandler()
{
}
void
UrlSchemeHandler::handleContentRequest(QWebEngineUrlRequestJob *request)
{
@ -48,7 +46,6 @@ UrlSchemeHandler::handleContentRequest(QWebEngineUrlRequestJob *request)
} catch (kiwix::NoEntry&) {
request->fail(QWebEngineUrlRequestJob::UrlNotFound);
}
}
void