From 9ad604e21f8d96fd54464c1b00297779cc872616 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Tue, 6 Sep 2022 14:28:07 +0200 Subject: [PATCH] Remove re-export --- crates/fj-kernel/src/algorithms/approx/mod.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/crates/fj-kernel/src/algorithms/approx/mod.rs b/crates/fj-kernel/src/algorithms/approx/mod.rs index c64934e5f..cf17774af 100644 --- a/crates/fj-kernel/src/algorithms/approx/mod.rs +++ b/crates/fj-kernel/src/algorithms/approx/mod.rs @@ -6,10 +6,7 @@ pub mod edge; pub mod face; pub mod tolerance; -pub use self::{ - face::FaceApprox, - tolerance::{InvalidTolerance, Tolerance}, -}; +pub use self::tolerance::{InvalidTolerance, Tolerance}; /// Approximate an object pub trait Approx {