diff options
author | Carl Lerche <carllerche@mac.com> | 2010-03-03 00:03:29 -0800 |
---|---|---|
committer | Carl Lerche <carllerche@mac.com> | 2010-03-03 21:23:59 -0800 |
commit | c92d598abff54270337ad1eddf7bc41a71c4cbda (patch) | |
tree | 5827515314532ea71c3e8c1e23ade0ad07e9d24a /actionpack | |
parent | 5e0a05b8cb236d285ebb45de006dd3600c69357d (diff) | |
download | rails-c92d598abff54270337ad1eddf7bc41a71c4cbda.tar.gz rails-c92d598abff54270337ad1eddf7bc41a71c4cbda.tar.bz2 rails-c92d598abff54270337ad1eddf7bc41a71c4cbda.zip |
Rack::Request actually defines #query_string
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/http/url.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/actionpack/lib/action_dispatch/http/url.rb b/actionpack/lib/action_dispatch/http/url.rb index e67d970a23..049e1758fe 100644 --- a/actionpack/lib/action_dispatch/http/url.rb +++ b/actionpack/lib/action_dispatch/http/url.rb @@ -85,11 +85,6 @@ module ActionDispatch subdomains(tld_length).join('.') end - # The query string must always be present - def query_string - @env['QUERY_STRING'] - end - # Returns the request URI, accounting for server idiosyncrasies. # WEBrick includes the full URL. IIS leaves REQUEST_URI blank. def request_uri |