diff options
author | Josh Kalderimis <josh.kalderimis@gmail.com> | 2011-05-12 15:24:10 +0200 |
---|---|---|
committer | Josh Kalderimis <josh.kalderimis@gmail.com> | 2011-05-12 15:24:10 +0200 |
commit | 3d03c7982982fd7dda45df9d1973f2696860088b (patch) | |
tree | a51102ad95bda80e8c75462cc75ecb49b1df9533 | |
parent | 987f79cda890d37fd5c3da8a64dac5c797956291 (diff) | |
download | rails-3d03c7982982fd7dda45df9d1973f2696860088b.tar.gz rails-3d03c7982982fd7dda45df9d1973f2696860088b.tar.bz2 rails-3d03c7982982fd7dda45df9d1973f2696860088b.zip |
Remove a circular require in AS deprecations. This is safe as AS deprecations is autoloaded as needed.
-rw-r--r-- | activesupport/lib/active_support/core_ext/module/deprecation.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/module/deprecation.rb b/activesupport/lib/active_support/core_ext/module/deprecation.rb index 9c169a2598..5a5b4e3f80 100644 --- a/activesupport/lib/active_support/core_ext/module/deprecation.rb +++ b/activesupport/lib/active_support/core_ext/module/deprecation.rb @@ -1,5 +1,3 @@ -require 'active_support/deprecation' - class Module # Declare that a method has been deprecated. # deprecate :foo |