Skip to content
Snippets Groups Projects
Commit e2058ed3 authored by Jack Nagel's avatar Jack Nagel
Browse files

mach-o: use any? instead of map and include?


Signed-off-by: default avatarJack Nagel <jacknagel@gmail.com>
parent abf55c2b
No related branches found
No related tags found
No related merge requests found
......@@ -100,14 +100,14 @@ module MachO
end
def dylib?
mach_data.map{ |m| m.fetch :type }.include? :dylib
mach_data.any? { |m| m.fetch(:type) == :dylib }
end
def mach_o_executable?
mach_data.map{ |m| m.fetch :type }.include? :executable
mach_data.any? { |m| m.fetch(:type) == :executable }
end
def mach_o_bundle?
mach_data.map{ |m| m.fetch :type }.include? :bundle
mach_data.any? { |m| m.fetch(:type) == :bundle }
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment