From 44ea7fd31821f8930398a8cd5570cdd4d77f0ef4 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Fri, 14 Jun 2024 21:06:31 +0200 Subject: [PATCH] Prepare for follow-on change --- crates/fj-core/src/operations/transform/cycle.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/fj-core/src/operations/transform/cycle.rs b/crates/fj-core/src/operations/transform/cycle.rs index 5bf179520..ca0787bec 100644 --- a/crates/fj-core/src/operations/transform/cycle.rs +++ b/crates/fj-core/src/operations/transform/cycle.rs @@ -21,6 +21,6 @@ impl TransformObject for Cycle { .transform_with_cache(transform, core, cache) }); - Self::new(half_edges) + Cycle::new(half_edges) } }