mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Silence dead_code warning on AppBuilder::with_config
This function is not currently used but is likely to be useful in the future, so this change silences the dead_code warning.
This commit is contained in:
parent
313579d27c
commit
66238e8556
1 changed files with 2 additions and 0 deletions
|
@ -286,6 +286,8 @@ impl AppBuilder {
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Remove this attribute once `with_config` is used in a test:
|
||||||
|
#[allow(dead_code)]
|
||||||
pub fn with_config(mut self, config: Config) -> Self {
|
pub fn with_config(mut self, config: Config) -> Self {
|
||||||
self.config = config;
|
self.config = config;
|
||||||
self
|
self
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue