diff --git a/crates/fj-core/src/operations/split/edge.rs b/crates/fj-core/src/operations/split/edge.rs index 774bb9d4b..6678e9ca6 100644 --- a/crates/fj-core/src/operations/split/edge.rs +++ b/crates/fj-core/src/operations/split/edge.rs @@ -40,9 +40,7 @@ impl SplitEdge for Shell { .get_sibling_of(half_edge) .expect("Expected half-edge and its sibling to be part of shell"); - let [half_edge_a, half_edge_b] = half_edge - .split_half_edge(point, core) - .map(|half_edge_part| half_edge_part); + let [half_edge_a, half_edge_b] = half_edge.split_half_edge(point, core); let siblings = { let [sibling_a, sibling_b] = sibling.split_half_edge(point, core);