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.
This commit is contained in:
Jukka Aho
2025-11-18 15:09:37 +02:00
parent 6ee2a3b3ff
commit 22a1dbfd8a
+1 -2
View File
@@ -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