1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Remove unused before_filters

This method added by 1008511. It is unnecessary because it is no longer called
by 19c3495.
This commit is contained in:
yuuji.yaginuma 2017-10-15 16:01:02 +09:00
parent 5668dc6b18
commit 879d540adc

View file

@ -12,11 +12,5 @@ module ActionController
self.params = nil self.params = nil
end end
end end
module ClassMethods
def before_filters
_process_action_callbacks.find_all { |x| x.kind == :before }.map(&:name)
end
end
end end
end end