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

remove useless parameter

This commit is contained in:
Aaron Patterson 2014-08-27 17:59:34 -07:00
parent 7a2622bcbd
commit cab85e9926

View file

@ -242,7 +242,7 @@ module ActionView
end
instrument("!compile_template") do
compile(view, mod)
compile(mod)
end
# Just discard the source if we have a virtual path. This
@ -264,7 +264,7 @@ module ActionView
# encode the source into <tt>Encoding.default_internal</tt>.
# In general, this means that templates will be UTF-8 inside of Rails,
# regardless of the original source encoding.
def compile(view, mod) #:nodoc:
def compile(mod) #:nodoc:
encode!
method_name = self.method_name
code = @handler.call(self)