diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2011-08-01 08:32:06 -0700 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-08-01 08:32:06 -0700 |
commit | 5c26f56b17ec51489c24e9a256a6d577aa94eae7 (patch) | |
tree | c709f38122d9d931f8fadafdec0b69c256cd0324 /activesupport/lib | |
parent | 6b3af028acdd8c97b7b6088117a042ddfd7f3038 (diff) | |
parent | 6244a53a073fcf12abddd9eaaecf1191cd2b5446 (diff) | |
download | rails-5c26f56b17ec51489c24e9a256a6d577aa94eae7.tar.gz rails-5c26f56b17ec51489c24e9a256a6d577aa94eae7.tar.bz2 rails-5c26f56b17ec51489c24e9a256a6d577aa94eae7.zip |
Merge pull request #2389 from dmitriy-kiriyenko/remove_unnecessary_require_in_delegation
Remove unnecessary require (happened after fcbde454f6)
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/module/delegation.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/module/delegation.rb b/activesupport/lib/active_support/core_ext/module/delegation.rb index 41f9a76b13..149b849b12 100644 --- a/activesupport/lib/active_support/core_ext/module/delegation.rb +++ b/activesupport/lib/active_support/core_ext/module/delegation.rb @@ -1,5 +1,3 @@ -require "active_support/core_ext/module/remove_method" - class Module # Provides a delegate class method to easily expose contained objects' methods # as your own. Pass one or more methods (specified as symbols or strings) |