Skip to content
Snippets Groups Projects
Commit cb1ac3f9 authored by Markus Reiter's avatar Markus Reiter
Browse files

Don’t implement `PATH#eql?`.

parent f8ad9d7e
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ class PATH
end
alias to_s to_str
def eql?(other)
def ==(other)
if other.respond_to?(:to_ary)
return true if to_ary == other.to_ary
end
......@@ -34,7 +34,6 @@ class PATH
false
end
alias == eql?
def empty?
@paths.empty?
......
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