aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/bundle/BundleModule.qbs
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@theqtcompany.com>2015-10-28 19:04:43 -0700
committerJake Petroules <jake.petroules@theqtcompany.com>2015-10-30 10:07:15 +0000
commit9d8d800463406c350266face4d4df615df85e3bb (patch)
tree0911cf01b0601b7c92f517313df6e91f6dcab03e /share/qbs/modules/bundle/BundleModule.qbs
parent16e0b3a06255d42aec970191f5c56ff37106388b (diff)
Remove dead code introduced in bfdc2953ecc4a9800c2974d2d63e528c2bdc9b96.
It is a duplicate of the above block from when plist handling was moved from the cpp module to the bundle module. Change-Id: I7ddeb96305c890353b114ac7709950131fede78d Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Diffstat (limited to 'share/qbs/modules/bundle/BundleModule.qbs')
-rw-r--r--share/qbs/modules/bundle/BundleModule.qbs6
1 files changed, 0 insertions, 6 deletions
diff --git a/share/qbs/modules/bundle/BundleModule.qbs b/share/qbs/modules/bundle/BundleModule.qbs
index 243ab4f39..360978122 100644
--- a/share/qbs/modules/bundle/BundleModule.qbs
+++ b/share/qbs/modules/bundle/BundleModule.qbs
@@ -252,12 +252,6 @@ Module {
aggregatePlist[key] = defaultValues[key];
}
- var defaultValues = product.moduleProperty("cpp", "defaultInfoPlist");
- for (key in defaultValues) {
- if (defaultValues.hasOwnProperty(key) && !(key in aggregatePlist))
- aggregatePlist[key] = defaultValues[key];
- }
-
// Add keys from platform's Info.plist if not already present
var platformInfo = {};
var sdkSettings = {};