Skip to content

Commit

Permalink
remove commented out block
Browse files Browse the repository at this point in the history
  • Loading branch information
ahojukka5 committed Jul 18, 2017
1 parent c5bcc45 commit 0e0f5d1
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/parse_mesh.jl
Expand Up @@ -174,12 +174,6 @@ function parse_section(model, lines, key, idx_start, idx_end, ::Type{Val{:SURFAC
for line in lines[idx_start + 1: idx_end]
empty_or_comment_line(line) && continue
m = match(r"(?P<element_id>\d+),.*(?P<element_side>S\d+).*", line)
#=
if isa(m, Void)
warn("read_abaqus, parsing surface: line $line")
continue
end
=#
element_id = parse(Int, m[:element_id])
element_side = Symbol(m[:element_side])
push!(data, (element_id, element_side))
Expand Down

0 comments on commit 0e0f5d1

Please sign in to comment.