aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/base.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_view/base.rb')
-rw-r--r--actionpack/lib/action_view/base.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb
index 0866e808e6..37cd4d9ddc 100644
--- a/actionpack/lib/action_view/base.rb
+++ b/actionpack/lib/action_view/base.rb
@@ -202,17 +202,13 @@ module ActionView #:nodoc:
lookup_context : ActionView::LookupContext.new(lookup_context)
@_lookup_context.formats = formats if formats
- @_renderer = ActionView::Renderer.new(@_lookup_context, self)
+ @view_renderer = ActionView::Renderer.new(@_lookup_context, self)
end
def controller_path
@controller_path ||= controller && controller.controller_path
end
- def controller_prefixes
- @controller_prefixes ||= controller && controller._prefixes
- end
-
ActiveSupport.run_load_hooks(:action_view, self)
end
end