diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2015-08-24 14:21:27 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2015-08-24 14:21:27 -0700 |
commit | ec9c237acc1f140df464e824d9e28c78c96837e7 (patch) | |
tree | 2a8aa6320bf1fdb4a9d5093acbf533b181f60250 /actionpack/lib | |
parent | 7a62cc7d22168b5fbfc5ebbe1b219e82db716ac5 (diff) | |
download | rails-ec9c237acc1f140df464e824d9e28c78c96837e7.tar.gz rails-ec9c237acc1f140df464e824d9e28c78c96837e7.tar.bz2 rails-ec9c237acc1f140df464e824d9e28c78c96837e7.zip |
rm useless method
superclass already has this method, so remove this one
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/test_case.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/test_case.rb index d14483dc72..9ac2339789 100644 --- a/actionpack/lib/action_controller/test_case.rb +++ b/actionpack/lib/action_controller/test_case.rb @@ -39,10 +39,6 @@ module ActionController set_header Rack::QUERY_STRING, string end - def request_parameters=(params) - set_header "action_dispatch.request.request_parameters", params - end - def content_type=(type) set_header 'CONTENT_TYPE', type end |