From 95cf4a46ff8b686dbba471064629227f4d752774 Mon Sep 17 00:00:00 2001 From: hjk Date: Mon, 22 Jul 2024 10:44:28 +0200 Subject: [PATCH] ProjectExplorer: Remove left over assert Amends 07df45cdeb0. Change-Id: Ic4520020cd57eac72631efee05ca9b55e62e34e6 Reviewed-by: Jarek Kobus Reviewed-by: Eike Ziller --- src/plugins/projectexplorer/target.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/plugins/projectexplorer/target.cpp b/src/plugins/projectexplorer/target.cpp index cae9a01d02a..950067e086f 100644 --- a/src/plugins/projectexplorer/target.cpp +++ b/src/plugins/projectexplorer/target.cpp @@ -975,10 +975,6 @@ bool Target::addConfigurationsFromMap(const Utils::Store &map, bool setActiveCon RunConfiguration *rc = RunConfigurationFactory::restore(this, valueMap); if (!rc) continue; - const Utils::Id theIdFromMap = ProjectExplorer::idFromMap(valueMap); - if (!theIdFromMap.name().contains("///::///")) { // Hack for cmake 4.10 -> 4.11 - QTC_CHECK(rc->id().withSuffix(rc->buildKey()) == theIdFromMap); - } addRunConfiguration(rc); if (i == activeConfiguration) setActiveRunConfiguration(rc);