diff options
author | kenta-s <knt01222@gmail.com> | 2017-01-18 22:12:47 +0900 |
---|---|---|
committer | kenta-s <knt01222@gmail.com> | 2017-01-18 22:12:47 +0900 |
commit | 4327444cfdbfc8ce93ca0efa50ac6cf00940fbaa (patch) | |
tree | 107a998f1383368128bb9761a3f3d87a5c09c726 /actionview/lib/action_view | |
parent | 1853a4f2c8b2bddfbde6aae80abb08310295201c (diff) | |
download | rails-4327444cfdbfc8ce93ca0efa50ac6cf00940fbaa.tar.gz rails-4327444cfdbfc8ce93ca0efa50ac6cf00940fbaa.tar.bz2 rails-4327444cfdbfc8ce93ca0efa50ac6cf00940fbaa.zip |
Remove TODOs related to Exceptron [ci skip]
Diffstat (limited to 'actionview/lib/action_view')
-rw-r--r-- | actionview/lib/action_view/renderer/streaming_template_renderer.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/actionview/lib/action_view/renderer/streaming_template_renderer.rb b/actionview/lib/action_view/renderer/streaming_template_renderer.rb index 7ede034492..62ce985243 100644 --- a/actionview/lib/action_view/renderer/streaming_template_renderer.rb +++ b/actionview/lib/action_view/renderer/streaming_template_renderer.rb @@ -4,7 +4,6 @@ module ActionView # == TODO # # * Support streaming from child templates, partials and so on. - # * Integrate exceptions with exceptron # * Rack::Cache needs to support streaming bodies class StreamingTemplateRenderer < TemplateRenderer #:nodoc: # A valid Rack::Body (i.e. it responds to each). @@ -28,7 +27,6 @@ module ActionView private # This is the same logging logic as in ShowExceptions middleware. - # TODO Once "exceptron" is in, refactor this piece to simply re-use exceptron. def log_error(exception) logger = ActionView::Base.logger return unless logger |