chore(io): remove legacy AbaqusReader module stub

Drop the thin `AbaqusReader` wrapper that only forwarded includes into the old
parser stack; opt-in Abaqus ingestion now ships from `Legacy` instead.

- Delete the standalone `src/io/AbaqusReader.jl` entry module (Nullables-era).
This commit is contained in:
Jukka Aho
2026-05-09 17:09:12 +03:00
parent d5fe01b745
commit cab05be2b2
-17
View File
@@ -1,17 +0,0 @@
# This file is a part of JuliaFEM.
# License is MIT: see https://github.com/JuliaFEM/AbaqusReader.jl/blob/master/LICENSE
module AbaqusReader
using Nullables
include("parse_mesh.jl")
include("keyword_register.jl")
include("parse_model.jl")
include("create_surface_elements.jl")
include("abaqus_download.jl")
export abaqus_read_mesh, abaqus_read_model, create_surface_elements
export abaqus_download
end