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

Make internal methods in AbstractController::Rendering to private

This commit is contained in:
Ryuta Kamizono 2017-10-02 06:56:57 +09:00
parent 9b12742b2d
commit 2ae89f8b79

View file

@ -71,6 +71,7 @@ module AbstractController
}
end
private
# Normalize args by converting <tt>render "foo"</tt> to
# <tt>render :action => "foo"</tt> and <tt>render "foo/bar"</tt> to
# <tt>render :file => "foo/bar"</tt>.