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

Merge pull request #852 from tsuwatch/fix/warn

Remove the redundant argument of warn
This commit is contained in:
Akira Matsuda 2017-01-18 20:24:44 +09:00 committed by GitHub
commit 8bc8bb2560

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