From f55069e875b9ea27e3944b9491fdd21fc4305d72 Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Thu, 4 May 2023 12:43:56 +0200 Subject: [PATCH] Consolidate redundant re-exports --- crates/fj-kernel/src/operations/mod.rs | 3 ++- crates/fj-kernel/src/operations/update/mod.rs | 15 +++++---------- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/crates/fj-kernel/src/operations/mod.rs b/crates/fj-kernel/src/operations/mod.rs index 9e7b5ac43..5cff834e4 100644 --- a/crates/fj-kernel/src/operations/mod.rs +++ b/crates/fj-kernel/src/operations/mod.rs @@ -17,6 +17,7 @@ pub use self::{ insert::{Insert, IsInserted, IsInsertedNo, IsInsertedYes}, join::cycle::JoinCycle, update::{ - UpdateCycle, UpdateFace, UpdateHalfEdge, UpdateShell, UpdateSolid, + cycle::UpdateCycle, edge::UpdateHalfEdge, face::UpdateFace, + shell::UpdateShell, solid::UpdateSolid, }, }; diff --git a/crates/fj-kernel/src/operations/update/mod.rs b/crates/fj-kernel/src/operations/update/mod.rs index 431b97368..85f65f886 100644 --- a/crates/fj-kernel/src/operations/update/mod.rs +++ b/crates/fj-kernel/src/operations/update/mod.rs @@ -1,10 +1,5 @@ -mod cycle; -mod edge; -mod face; -mod shell; -mod solid; - -pub use self::{ - cycle::UpdateCycle, edge::UpdateHalfEdge, face::UpdateFace, - shell::UpdateShell, solid::UpdateSolid, -}; +pub mod cycle; +pub mod edge; +pub mod face; +pub mod shell; +pub mod solid;