Remove dead code

This commit is contained in:
Mat Sutcliffe
2020-07-03 21:07:00 +01:00
parent eae0f5c008
commit 8375881941
2 changed files with 0 additions and 10 deletions

View File

@@ -1667,12 +1667,6 @@ namespace BlackCore
return m_setupReader->getLastSuccessfulSetupUrl();
}
QString CApplication::getLastSuccesfulDistributionUrl() const
{
if (!this->hasSetupReader()) { return {}; }
return m_setupReader->getLastSuccessfulUpdateInfoUrl();
}
CStatusMessageList CApplication::synchronizeSetup(int timeoutMs)
{
const CStatusMessageList requestMsgs = this->requestReloadOfSetupAndVersion();

View File

@@ -398,10 +398,6 @@ namespace BlackCore
//! \threadsafe
QString getLastSuccesfulSetupUrl() const;
//! Last distribution URL (successfully read)
//! \threadsafe
QString getLastSuccesfulDistributionUrl() const;
//! Reload setup and version
BlackMisc::CStatusMessageList requestReloadOfSetupAndVersion();