Skip to content

Commit 95a97cd

Browse files
committed
Remove vestigial show() methods
1 parent 909af3e commit 95a97cd

File tree

3 files changed

+1
-27
lines changed

3 files changed

+1
-27
lines changed

src/Abstract/DynamicLink.jl

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -164,10 +164,3 @@ end
164164

165165
show(io::IO, dls::DynamicLinks{H}) where {H <: ObjectHandle} = show_collection(io, dls, H)
166166
show(io::IO, rp::RPath{H}) where {H <: ObjectHandle} = show_collection(io, rp, H)
167-
168-
# function show(io::IO, rpath::RPath{H}) where {H <: ObjectHandle}
169-
# print(io, "$(format_string(H)) RPaths")
170-
# for path in rpaths(rpath)
171-
# print(io, "\n $(path)")
172-
# end
173-
# end

src/MachO/MachODynamicLink.jl

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,4 @@ handle(mrp::MachORPath) = mrp.handle
5454

5555
function rpaths(mrp::MachORPath)
5656
return [rpath(c) for c in mrp.cmds]
57-
end
58-
59-
60-
61-
62-
# Printing
63-
function show(io::IO, rpath::MachORPath)
64-
print(io, "MachO RPaths")
65-
for path in rpaths(rpath)
66-
print(io, "\n $(path)")
67-
end
6857
end

src/MachO/MachOSegment.jl

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,4 @@ function show(io::IO, seg::Union{MachOSegment,MachOSegmentRef})
9797
else
9898
print(io, " $(segment_name(seg))")
9999
end
100-
end
101-
102-
function show(io::IO, segs::MachOSegments)
103-
print(io, "MachO Segments")
104-
for seg in segs
105-
print(io, "\n ")
106-
showcompact(io, seg)
107-
end
108-
end
100+
end

0 commit comments

Comments
 (0)