Enable clippy::clone_on_copy
(#8728)
This PR enables the [`clippy::clone_on_copy`](https://rust-lang.github.io/rust-clippy/master/index.html#/clone_on_copy) rule and fixes the outstanding violations. Release Notes: - N/A
This commit is contained in:
parent
5935681c5c
commit
9735912965
42 changed files with 144 additions and 160 deletions
|
@ -991,7 +991,7 @@ impl LocalWorktree {
|
|||
pub fn scan_complete(&self) -> impl Future<Output = ()> {
|
||||
let mut is_scanning_rx = self.is_scanning.1.clone();
|
||||
async move {
|
||||
let mut is_scanning = is_scanning_rx.borrow().clone();
|
||||
let mut is_scanning = *is_scanning_rx.borrow();
|
||||
while is_scanning {
|
||||
if let Some(value) = is_scanning_rx.recv().await {
|
||||
is_scanning = value;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue