aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/new_base/content_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_controller/new_base/content_type.rb')
-rw-r--r--actionpack/lib/action_controller/new_base/content_type.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/actionpack/lib/action_controller/new_base/content_type.rb b/actionpack/lib/action_controller/new_base/content_type.rb
deleted file mode 100644
index d2206a31af..0000000000
--- a/actionpack/lib/action_controller/new_base/content_type.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-module ActionController
- module ContentType
-
- def render_to_body(options = {})
- if content_type = options[:content_type]
- response.content_type = content_type
- end
-
- ret = super
- response.content_type ||= options[:_template].mime_type
- ret
- end
-
- end
-end \ No newline at end of file