Skip to content

Commit cf7df84

Browse files
committed
Fix clippy issue
1 parent 9c1d56a commit cf7df84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/graph/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ impl<CT: ComponentType> Graph<CT> {
829829
// load missing components in parallel
830830
let loaded_components: Vec<(_, Result<Arc<dyn GraphStorage>>)> = components_to_load
831831
.into_par_iter()
832-
.map(|c| match component_path(&self.location, &c) {
832+
.map(|c| match component_path(&self.location, c) {
833833
Some(cpath) => {
834834
debug!("loading component {} from {}", c, &cpath.to_string_lossy());
835835
(c, load_component_from_disk(&cpath))

0 commit comments

Comments
 (0)