From b38454725f22a46a11183633b05ad559e94b1804 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Mon, 7 Aug 2023 12:37:03 +0200 Subject: [PATCH] Remove debug output --- crates/fj-core/src/validate/shell.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/fj-core/src/validate/shell.rs b/crates/fj-core/src/validate/shell.rs index e4882503f..28ddd5f98 100644 --- a/crates/fj-core/src/validate/shell.rs +++ b/crates/fj-core/src/validate/shell.rs @@ -373,7 +373,6 @@ impl ShellValidationError { // Check if a is reverse of b if a.boundary().reverse() != b.boundary() { errors.push(Self::MixedOrientations.into()); - dbg!(a, b); return; } }