From e044d6c00433cf9894557076b479e1c42b07c1e6 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Wed, 16 Mar 2022 15:46:05 +0100 Subject: [PATCH] Remove obsolete comment --- src/kernel/shapes/union.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/kernel/shapes/union.rs b/src/kernel/shapes/union.rs index 9b2fffe25..fe63c48ff 100644 --- a/src/kernel/shapes/union.rs +++ b/src/kernel/shapes/union.rs @@ -22,11 +22,6 @@ impl ToShape for fj::Group { let a = self.a.to_shape(tolerance, debug_info); let b = self.b.to_shape(tolerance, debug_info); - // This doesn't create a true union, as it doesn't eliminate, merge, or - // split faces. - // - // See issue: - // https://github.com/hannobraun/Fornjot/issues/42 copy_shape(a, &mut shape); copy_shape(b, &mut shape);