1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

avoid object creation via useless duping and freezing

This commit is contained in:
Aaron Patterson 2011-08-09 11:41:06 -07:00
parent 26e53a16c4
commit 3ad26c8e48

View file

@ -63,7 +63,7 @@ module AbstractController
# the default view path. You may also provide a custom view path
# (see ActionView::PathSet for more information)
def append_view_path(path)
self.view_paths = view_paths + Array(path)
self._view_paths = view_paths + Array(path)
end
# Prepend a path to the list of view paths for this controller.
@ -73,7 +73,7 @@ module AbstractController
# the default view path. You may also provide a custom view path
# (see ActionView::PathSet for more information)
def prepend_view_path(path)
self.view_paths = Array(path) + view_paths
self._view_paths = ActionView::PathSet.new(Array(path) + view_paths)
end
# A list of all of the default view paths for this controller.
@ -88,7 +88,6 @@ module AbstractController
# otherwise, process the parameter into a PathSet.
def view_paths=(paths)
self._view_paths = ActionView::Base.process_view_paths(paths)
self._view_paths.freeze
end
end
end