1
0
Fork 0
mirror of https://github.com/kaminari/kaminari.git synced 2022-11-09 13:44:37 -05:00

Remove the redundant argument of warn

This commit is contained in:
Tomohiro Suwa 2017-01-18 19:42:05 +09:00
parent ed7477e4ba
commit 87d6c8739a

View file

@ -49,7 +49,7 @@ module Kaminari
end
def max_pages_per(val)
ActiveSupport::Deprecation.warn 'max_pages_per is deprecated. Use max_pages instead.', caller_locations(2)
ActiveSupport::Deprecation.warn 'max_pages_per is deprecated. Use max_pages instead.'
max_pages val
end
end