diff options
author | Rashmi Yadav <rays.rashmi@gmail.com> | 2013-07-04 19:41:45 +0200 |
---|---|---|
committer | Rashmi Yadav <rays.rashmi@gmail.com> | 2013-07-04 19:41:45 +0200 |
commit | 77b587f942bf3768e5b680ac5e9f24c03a40c607 (patch) | |
tree | 7ed7054c05872e8c2f49c67f37c984988503d0e0 /activesupport/lib | |
parent | 4573825061e038504c98cdcaa60f1bb4307ee10c (diff) | |
download | rails-77b587f942bf3768e5b680ac5e9f24c03a40c607.tar.gz rails-77b587f942bf3768e5b680ac5e9f24c03a40c607.tar.bz2 rails-77b587f942bf3768e5b680ac5e9f24c03a40c607.zip |
Removed unsued deprecation require
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/date_time/calculations.rb | 1 | ||||
-rw-r--r-- | activesupport/lib/active_support/core_ext/time/calculations.rb | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/date_time/calculations.rb b/activesupport/lib/active_support/core_ext/date_time/calculations.rb index ff59be0022..7d4f716bb6 100644 --- a/activesupport/lib/active_support/core_ext/date_time/calculations.rb +++ b/activesupport/lib/active_support/core_ext/date_time/calculations.rb @@ -1,5 +1,4 @@ require 'date' -require 'active_support/deprecation' class DateTime class << self diff --git a/activesupport/lib/active_support/core_ext/time/calculations.rb b/activesupport/lib/active_support/core_ext/time/calculations.rb index f55a2797b5..fa74fee78a 100644 --- a/activesupport/lib/active_support/core_ext/time/calculations.rb +++ b/activesupport/lib/active_support/core_ext/time/calculations.rb @@ -3,7 +3,6 @@ require 'active_support/core_ext/time/conversions' require 'active_support/time_with_zone' require 'active_support/core_ext/time/zones' require 'active_support/core_ext/date_and_time/calculations' -require 'active_support/deprecation' class Time include DateAndTime::Calculations |