Remove redundant call

This commit is contained in:
Hanno Braun 2024-03-23 00:17:06 +01:00
parent 2162af6238
commit 41b745b46a

View File

@ -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);