From 22a1dbfd8a581e33125094b3a007e90ec6f190a0 Mon Sep 17 00:00:00 2001 From: Jukka Aho Date: Tue, 18 Nov 2025 15:09:37 +0200 Subject: [PATCH] chore(io): Limit IO module imports to only `Element` and `Mesh` - Removed unused imports (`add_node!`, `add_element_to_element_set!`, `add_node_to_node_set!`) from the `using ..JuliaFEM:` line - Keep `Preprocess` re-exported for convenience This reduces namespace pollution and lowers the chance of circular import issues; no functional changes expected. --- src/io/io.jl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/io/io.jl b/src/io/io.jl index 5e57684..d3b8986 100644 --- a/src/io/io.jl +++ b/src/io/io.jl @@ -25,8 +25,7 @@ body = create_elements(mesh, "BODY") """ module IO -using ..JuliaFEM: Element, Mesh, add_node!, add_element_to_element_set!, - add_node_to_node_set! +using ..JuliaFEM: Element, Mesh # Re-export for convenience import ..JuliaFEM.Preprocess