Browse Source

remove domain_paths hashmap, since it's no longer used

pull/3870/merge^2
BlockListed 2 years ago
parent
commit
303eb30ae4
No known key found for this signature in database GPG Key ID: 2D204777C477B588
  1. 2
      src/config.rs

2
src/config.rs

@ -51,7 +51,6 @@ macro_rules! make_config {
domain_hostmap: OnceLock<HostHashMap>,
domain_origins: OnceLock<HostHashMap>,
domain_paths: OnceLock<HostHashMap>,
}
#[derive(Clone, Default, Deserialize, Serialize)]
@ -1120,7 +1119,6 @@ impl Config {
_usr,
_overrides,
domain_origins: OnceLock::new(),
domain_paths: OnceLock::new(),
domain_hostmap: OnceLock::new(),
}),
})

Loading…
Cancel
Save