DEV: more send -> public_send changes

This is a work in progress commit for more send to public_send conversions

Also adds some comments for cases where we need to keep send
This commit is contained in:
Sam Saffron
2019-05-07 11:57:55 +10:00
parent 61cc0f8c5f
commit cac80cdc3b
12 changed files with 16 additions and 10 deletions

View File

@@ -33,7 +33,7 @@ class IncomingLinksReport
report.limit = _opts[:limit].to_i if _opts[:limit]
report.category_id = _opts[:category_id] if _opts[:category_id]
send(report_method, report)
public_send(report_method, report)
report
end