refactor(toml): Remove a variable that doesnt need tracking

This commit is contained in:
Ed Page 2024-03-19 12:02:53 -05:00
parent 5b2b1c036c
commit e30ddc4f94

View File

@ -926,7 +926,6 @@ pub fn to_real_manifest(
.map(|mw| field_inherit_with(mw, "include", || inherit()?.include()))
.transpose()?
.unwrap_or_default();
let empty_features = BTreeMap::new();
let summary = Summary::new(
pkgid,
@ -934,7 +933,7 @@ pub fn to_real_manifest(
&original_toml
.features
.as_ref()
.unwrap_or(&empty_features)
.unwrap_or(&Default::default())
.iter()
.map(|(k, v)| {
(