diff options
author | Waseem Ahmad <talk.to.waseem@gmail.com> | 2013-05-10 10:31:20 +0530 |
---|---|---|
committer | Waseem Ahmad <talk.to.waseem@gmail.com> | 2013-05-10 10:31:20 +0530 |
commit | da8fa91abf462979d07d6ae7ccbefb4ceec3e56a (patch) | |
tree | d996af2e3fc8ef350e011b86aa92a14779de0d4f /activesupport | |
parent | 4ae2309418fde718bd995d72b42672228a2f18b4 (diff) | |
download | rails-da8fa91abf462979d07d6ae7ccbefb4ceec3e56a.tar.gz rails-da8fa91abf462979d07d6ae7ccbefb4ceec3e56a.tar.bz2 rails-da8fa91abf462979d07d6ae7ccbefb4ceec3e56a.zip |
Remove unnecessary require from active_support/inflector/methods.rb
`active_support/inflections` already requires
`active_support/inflector/inflections`. There's no need to require it in
`active_support/inflector/methods`.
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/inflector/methods.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/inflector/methods.rb b/activesupport/lib/active_support/inflector/methods.rb index 39648727fd..f4c0989866 100644 --- a/activesupport/lib/active_support/inflector/methods.rb +++ b/activesupport/lib/active_support/inflector/methods.rb @@ -1,6 +1,5 @@ # encoding: utf-8 -require 'active_support/inflector/inflections' require 'active_support/inflections' module ActiveSupport |