diff options
author | José Valim <jose.valim@gmail.com> | 2011-12-08 15:23:23 +0100 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2011-12-08 16:39:06 +0100 |
commit | efc28a7f701e518eb747c57712f6c1d8e7027aeb (patch) | |
tree | 8be2b054aa2eab43f8391b391f72f4b483c9cc6e /actionpack/lib/abstract_controller | |
parent | 06ac7d3ee0371c3ba20174a5f9fe3830a9d3f6a2 (diff) | |
download | rails-efc28a7f701e518eb747c57712f6c1d8e7027aeb.tar.gz rails-efc28a7f701e518eb747c57712f6c1d8e7027aeb.tar.bz2 rails-efc28a7f701e518eb747c57712f6c1d8e7027aeb.zip |
Some small optimizations and improvements to benchmark code.
Diffstat (limited to 'actionpack/lib/abstract_controller')
-rw-r--r-- | actionpack/lib/abstract_controller/rendering.rb | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/actionpack/lib/abstract_controller/rendering.rb b/actionpack/lib/abstract_controller/rendering.rb index 41fdc11196..d95770c049 100644 --- a/actionpack/lib/abstract_controller/rendering.rb +++ b/actionpack/lib/abstract_controller/rendering.rb @@ -66,12 +66,7 @@ module AbstractController end def view_context_class - @_view_context_class || self.class.view_context_class - end - - def initialize(*) - @_view_context_class = nil - super + @_view_context_class ||= self.class.view_context_class end # An instance of a view class. The default view class is ActionView::Base |