diff options
author | Andrey Samsonov <andrey.samsonov@gmail.com> | 2012-10-15 12:25:23 +0000 |
---|---|---|
committer | Andrey Samsonov <andrey.samsonov@gmail.com> | 2012-10-15 12:26:17 +0000 |
commit | 0b238e4664a9c366d301234abd9b20d9583e7576 (patch) | |
tree | 78c33729b92113a1b53eea8df9b7238bf0febbe2 /actionpack | |
parent | a550a6839a256a9504b2dfc0eba949e36e39c061 (diff) | |
download | rails-0b238e4664a9c366d301234abd9b20d9583e7576.tar.gz rails-0b238e4664a9c366d301234abd9b20d9583e7576.tar.bz2 rails-0b238e4664a9c366d301234abd9b20d9583e7576.zip |
Removed useless "extend SanitizeHelper::ClassMethods"
Since SanitizeHelper includes ActiveSupport::Concern,
extending of it ClassMethods is no needed.
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/helpers.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/actionpack/lib/action_view/helpers.rb b/actionpack/lib/action_view/helpers.rb index dad50a58a1..269e78a021 100644 --- a/actionpack/lib/action_view/helpers.rb +++ b/actionpack/lib/action_view/helpers.rb @@ -29,10 +29,6 @@ module ActionView #:nodoc: extend ActiveSupport::Concern - included do - extend SanitizeHelper::ClassMethods - end - include ActiveModelHelper include AssetTagHelper include AssetUrlHelper |