mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Fix equality check
This commit is contained in:
parent
e8bac86017
commit
b0e27c69e8
1 changed files with 2 additions and 2 deletions
|
@ -120,8 +120,8 @@ module Spectator
|
||||||
meth.free_vars == method.free_vars &&
|
meth.free_vars == method.free_vars &&
|
||||||
meth.receiver == method.receiver &&
|
meth.receiver == method.receiver &&
|
||||||
meth.return_type == method.return_type &&
|
meth.return_type == method.return_type &&
|
||||||
method.splat_index == method.splat_index &&
|
meth.splat_index == method.splat_index &&
|
||||||
method.visibility == method.visibility
|
meth.visibility == method.visibility
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
:super
|
:super
|
||||||
|
|
Loading…
Reference in a new issue