mirror of
https://github.com/JuliaFEM/JuliaFEM.jl.git
synced 2026-09-10 13:17:42 +00:00
fix(legacy): wire Abaqus shim to Legacy surface helper
Stop re-exporting `create_surface_elements` from top-level `JuliaFEM` (which no longer defines it) and bind the compatibility submodule against the Legacy implementation instead. - Replace `using JuliaFEM: create_surface_elements` with `import ..create_surface_elements` inside `Legacy.Abaqus`.
This commit is contained in:
@@ -10,5 +10,8 @@ function assemble!(problem::Problem, element::Element, time=0.0)
|
||||
end
|
||||
|
||||
module Abaqus
|
||||
using JuliaFEM: create_surface_elements
|
||||
# Vestigial sub-module wrapper kept for downstream code that did
|
||||
# `using JuliaFEM.Abaqus: create_surface_elements`. The real definition
|
||||
# now lives in `JuliaFEM.Legacy.create_surface_elements`.
|
||||
import ..create_surface_elements
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user