mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-08 11:58:27 +00:00
Refactor to prepare for follow-on change
This commit is contained in:
parent
3ddc250bc8
commit
b69691e523
@ -116,13 +116,12 @@ impl ShellValidationError {
|
|||||||
unmatched_half_edges
|
unmatched_half_edges
|
||||||
.into_values()
|
.into_values()
|
||||||
.cloned()
|
.cloned()
|
||||||
.for_each(|half_edge| {
|
.map(|half_edge| {
|
||||||
errors.push(
|
Self::HalfEdgeHasNoSibling(HalfEdgeHasNoSibling { half_edge })
|
||||||
Self::HalfEdgeHasNoSibling(HalfEdgeHasNoSibling {
|
.into()
|
||||||
half_edge,
|
|
||||||
})
|
})
|
||||||
.into(),
|
.for_each(|err| {
|
||||||
);
|
errors.push(err);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user