mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 06:12:40 +00:00
style: Remove unused mut
This commit is contained in:
parent
e7729d1282
commit
5661b6b508
1 changed files with 1 additions and 1 deletions
|
@ -4030,7 +4030,7 @@ impl Command {
|
|||
}
|
||||
.to_owned();
|
||||
|
||||
for mut sc in &mut self.subcommands {
|
||||
for sc in &mut self.subcommands {
|
||||
debug!("Command::_build_bin_names:iter: bin_name set...");
|
||||
|
||||
if sc.usage_name.is_none() {
|
||||
|
|
Loading…
Reference in a new issue