diff --git a/src/plugins/projectexplorer/projectnodes.cpp b/src/plugins/projectexplorer/projectnodes.cpp index ea4b780cabe..f5e03c31443 100644 --- a/src/plugins/projectexplorer/projectnodes.cpp +++ b/src/plugins/projectexplorer/projectnodes.cpp @@ -389,14 +389,6 @@ static QList scanForFilesRecursively(const Utils::FileName &director return result; } - -QList FileNode::scanForFiles(const Utils::FileName &directory, - const std::function factory, - QFutureInterface > *future) -{ - return FileNode::scanForFilesWithVersionControls(directory, factory, QList(), future); -} - QList FileNode::scanForFilesWithVersionControls(const Utils::FileName &directory, const std::function factory, diff --git a/src/plugins/projectexplorer/projectnodes.h b/src/plugins/projectexplorer/projectnodes.h index 2619b7e8a6c..09792a2a36f 100644 --- a/src/plugins/projectexplorer/projectnodes.h +++ b/src/plugins/projectexplorer/projectnodes.h @@ -191,11 +191,6 @@ public: FileNode *asFileNode() final { return this; } const FileNode *asFileNode() const final { return this; } - // For ABI compatibility, remove in QtC 4.4: - static QList scanForFiles(const Utils::FileName &directory, - const std::function factory, - QFutureInterface> *future = nullptr); - static QList scanForFilesWithVersionControls(const Utils::FileName &directory, const std::function factory,