use String::default() for empty strings

as suggested by diamante quality control ™️
This commit is contained in:
2023-11-02 11:27:43 +01:00
parent 9a9e64fb0e
commit 806118862f
3 changed files with 3 additions and 3 deletions

View File

@@ -32,7 +32,7 @@ impl Default for Config {
download_bonus_content: false,
ask_bonus_content: true,
force_update: false,
args: String::from(""),
args: String::default(),
}
}
}