renderer: remove redundant clone in CmdRenderer

As suggested by clippy:
https://rust-lang.github.io/rust-clippy/master/index.html#redundant_clone
This commit is contained in:
Riccardo Magliocchetti 2021-05-30 14:58:50 +02:00
parent 56ceb627b8
commit 714c5fb81e
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ impl CmdRenderer {
} else {
// Let this bubble through to later be handled by
// handle_render_command_error.
abs_exe.to_path_buf()
abs_exe
}
}
};