From 8978c5a7bc161f30c05a61e994efd02a0c355621 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Fri, 8 Sep 2023 11:02:50 +0200 Subject: [PATCH] Remove redundant comment --- crates/fj-core/src/algorithms/approx/curve/cache.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/fj-core/src/algorithms/approx/curve/cache.rs b/crates/fj-core/src/algorithms/approx/curve/cache.rs index 1da61b872..c1913324a 100644 --- a/crates/fj-core/src/algorithms/approx/curve/cache.rs +++ b/crates/fj-core/src/algorithms/approx/curve/cache.rs @@ -57,8 +57,6 @@ impl CurveApproxCache { let (approx, segment) = match self.inner.remove(&curve) { Some(mut existing_approx) => { - // An approximation for this curve already exists. We need to - // merge the new segment into it. let segment = existing_approx.merge(new_segment); (existing_approx, segment) }