QmlProfiler: Remove unnecessary parameter from test code

Change-Id: Ia1963e316f7c56357989440a13af5d73488ffece
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Tobias Hunger
2019-08-15 12:27:03 +02:00
parent 3b41b9b24b
commit bc6628d037

View File

@@ -48,8 +48,8 @@ class DummyProject : public ProjectExplorer::Project
{
Q_OBJECT
public:
DummyProject(const Utils::FilePath &file) :
ProjectExplorer::Project(QString(), file, {})
DummyProject(const Utils::FilePath &file)
: ProjectExplorer::Project(QString(), file)
{
auto fileNode
= std::make_unique<ProjectExplorer::FileNode>(file, ProjectExplorer::FileType::Source);