Skip to content

Commit 815ebdd

Browse files
github-actions[bot]iduartgomez
authored andcommitted
fix(formatting): collapse method chain to single line
Co-authored-by: nacho.d.g <iduartgomez@users.noreply.github.com>
1 parent a8c7fe7 commit 815ebdd

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

crates/core/src/node/op_state_manager.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -477,10 +477,7 @@ impl OpManager {
477477
.or_insert(1);
478478

479479
// Register parent-child relationship
480-
self.sub_operations
481-
.entry(parent)
482-
.or_default()
483-
.insert(child);
480+
self.sub_operations.entry(parent).or_default().insert(child);
484481

485482
self.parent_of.insert(child, parent);
486483
}

0 commit comments

Comments
 (0)