QuackatronHQ / Gigarepo

Unused method arguments detected RB-LI1074
Bug risk
Major
1 occurrence in this check
Unused method argument - bar. If it's necessary, use _ or _bar as an argument name to indicate that it won't be used. If it's unnecessary, remove it. You can also write as some_method(*) if you want the method to accept any arguments but don't care about them.
28end
29
30# Raises "unused method arguments detected"
31def some_method(bar)32  puts 'Hello'
33end
34