Skip to content

Commit

Permalink
Remove unnecessary clone
Browse files Browse the repository at this point in the history
  • Loading branch information
muglug committed Jul 25, 2024
1 parent c5d37b7 commit 02bf070
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/file_scanner_analyzer/scanner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ pub fn scan_files(
codebase_diff.extend(get_diff(&existing_changed_files, &thread_codebase.files));
}

codebase.extend(thread_codebase.clone());
codebase.extend(thread_codebase);
}
}

Expand Down

0 comments on commit 02bf070

Please sign in to comment.