aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2017-01-02 14:37:43 +0100
committerJoerg Bornemann <joerg.bornemann@qt.io>2017-01-02 13:52:09 +0000
commit16a08516371356b5105413243f6fa0a5d7ea1ef1 (patch)
treef515d6036a5167d1ce5a1be9deeacf0086e6db87
parent7fbb43ce5420266f82fc0946b93eec5e2f9fda8e (diff)
Remove superfluous assignment
Change-Id: Ie74953e58e44942be716e0cc487f4d2a39e88293 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
-rw-r--r--src/lib/corelib/api/project.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/corelib/api/project.cpp b/src/lib/corelib/api/project.cpp
index 3902d26fb..e44d22401 100644
--- a/src/lib/corelib/api/project.cpp
+++ b/src/lib/corelib/api/project.cpp
@@ -796,7 +796,6 @@ void ProjectPrivate::retrieveProjectData(ProjectData &projectData,
ArtifactData ta;
ta.d->filePath = it.key();
ta.d->fileTags = it.value().fileTags.toStringList();
- ta.d->properties.d->m_map = PropertyMapInternal::create();
ta.d->properties.d->m_map = it.value().properties;
ta.d->isGenerated = true;
ta.d->isTargetArtifact = resolvedProduct->fileTags.matches(it.value().fileTags);