diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-02 23:22:22 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-04 11:58:41 -0300 |
commit | 7676659633057dacd97b8da66e0d9119809b343e (patch) | |
tree | f67f52d1c02a3b466781e4e1ffcf7c72ddab6330 /actionpack/lib | |
parent | 7fe7973cd8bd119b724d72c5f617cf94c18edf9e (diff) | |
download | rails-7676659633057dacd97b8da66e0d9119809b343e.tar.gz rails-7676659633057dacd97b8da66e0d9119809b343e.tar.bz2 rails-7676659633057dacd97b8da66e0d9119809b343e.zip |
Remove deprecated `ActionDispatch::Request#deep_munge`
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_dispatch/http/request.rb | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/actionpack/lib/action_dispatch/http/request.rb b/actionpack/lib/action_dispatch/http/request.rb index d211ea2b77..cadbfc88cb 100644 --- a/actionpack/lib/action_dispatch/http/request.rb +++ b/actionpack/lib/action_dispatch/http/request.rb @@ -337,15 +337,6 @@ module ActionDispatch LOCALHOST =~ remote_addr && LOCALHOST =~ remote_ip end - # Extracted into ActionDispatch::Request::Utils.deep_munge, but kept here for backwards compatibility. - def deep_munge(hash) - ActiveSupport::Deprecation.warn( - 'This method has been extracted into `ActionDispatch::Request::Utils.deep_munge`. Please start using that instead.' - ) - - Utils.deep_munge(hash) - end - protected def parse_query(qs) Utils.deep_munge(super) |