aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-05-18 06:35:55 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-05-18 06:35:55 +0000
commit83318c7e8ad05131da1f031e3bef19459dca57fa (patch)
tree47c59b7f1e3ffcf364b33126650d19e952bb691e /actionpack
parentd2ed32d5929f9d837280e2354e9a7e5c99fc445f (diff)
downloadrails-83318c7e8ad05131da1f031e3bef19459dca57fa.tar.gz
rails-83318c7e8ad05131da1f031e3bef19459dca57fa.tar.bz2
rails-83318c7e8ad05131da1f031e3bef19459dca57fa.zip
Remove dev exception.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6765 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rwxr-xr-xactionpack/lib/action_controller/request.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/request.rb b/actionpack/lib/action_controller/request.rb
index f5dfcbf457..345832d43a 100755
--- a/actionpack/lib/action_controller/request.rb
+++ b/actionpack/lib/action_controller/request.rb
@@ -320,8 +320,6 @@ module ActionController
mime_type = Mime::Type.lookup(content_type)
strategy = ActionController::Base.param_parsers[mime_type]
- raise [content_type, content_length, mime_type, ActionController::Base.param_parsers].inspect unless strategy
-
# Only multipart form parsing expects a stream.
if strategy && strategy != :multipart_form
body = body.read(content_length)