Browse Source
remove domain_paths hashmap, since it's no longer used
pull/3870/merge^2
BlockListed
2 years ago
No known key found for this signature in database
GPG Key ID: 2D204777C477B588
1 changed files with
0 additions and
2 deletions
-
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(), |
|
|
|
}), |
|
|
|
}) |
|
|
|