diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2014-08-27 17:59:34 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2014-08-27 17:59:34 -0700 |
commit | cab85e9926c62094d1bada4437b6d1b6bc51e5e8 (patch) | |
tree | 96b2d15b97e5ba875592bf1e8f0fc35a6c2dbb33 | |
parent | 7a2622bcbd1937dd2862d27fa18258198de7a153 (diff) | |
download | rails-cab85e9926c62094d1bada4437b6d1b6bc51e5e8.tar.gz rails-cab85e9926c62094d1bada4437b6d1b6bc51e5e8.tar.bz2 rails-cab85e9926c62094d1bada4437b6d1b6bc51e5e8.zip |
remove useless parameter
-rw-r--r-- | actionview/lib/action_view/template.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionview/lib/action_view/template.rb b/actionview/lib/action_view/template.rb index 07522778b7..eb0f2e8a57 100644 --- a/actionview/lib/action_view/template.rb +++ b/actionview/lib/action_view/template.rb @@ -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) |