Remove unused ModelManagerInterface:isIdle()

Change-Id: I7c607bcc0a03219d7d6205a0c5fbdd3d46f9e9fa
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Jarek Kobus
2021-06-21 18:18:41 +02:00
parent 1d600101ee
commit fd6ec7da25
2 changed files with 0 additions and 7 deletions

View File

@@ -664,12 +664,6 @@ QList<ModelManagerInterface::ProjectInfo> ModelManagerInterface::allProjectInfos
return infos;
}
bool ModelManagerInterface::isIdle() const
{
QMutexLocker futureLocker(&m_futuresMutex);
return m_futureSynchronizer.isEmpty();
}
void ModelManagerInterface::emitDocumentChangedOnDisk(Document::Ptr doc)
{
emit documentChangedOnDisk(std::move(doc));

View File

@@ -161,7 +161,6 @@ public:
void updateQrcFile(const QString &path);
ProjectInfo projectInfoForPath(const QString &path) const;
QList<ProjectInfo> allProjectInfosForPath(const QString &path) const;
bool isIdle() const ;
QStringList importPathsNames() const;
QmlJS::QmlLanguageBundles activeBundles() const;