obj -> other

Fixes #2331
This commit is contained in:
Pier-Hugues Pellerin 2015-01-14 18:15:30 -05:00 committed by Jordan Sissel
parent 85fd55eac5
commit ce331957fa

View file

@ -36,8 +36,8 @@ module LogStash::Util
find_version!(plugin_name)
end
def <=>(obj)
version <=> obj.version
def <=>(other)
version <=> other.version
end
end
end