aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2013-07-02 09:18:08 +0530
committerVipul A M <vipulnsward@gmail.com>2013-07-02 11:22:19 +0530
commit4bec1da79b337c26fac188c6fa10aec4f553b612 (patch)
tree4d4390b15e58aa70340fd7b12f1b8010a43ff2a2 /activesupport/lib
parent9aaa3111b0b795acdb9b7035bbaa50565c7284aa (diff)
downloadrails-4bec1da79b337c26fac188c6fa10aec4f553b612.tar.gz
rails-4bec1da79b337c26fac188c6fa10aec4f553b612.tar.bz2
rails-4bec1da79b337c26fac188c6fa10aec4f553b612.zip
Remove deprecated `Date#to_time_in_current_zone`
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/core_ext/date/zones.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/activesupport/lib/active_support/core_ext/date/zones.rb b/activesupport/lib/active_support/core_ext/date/zones.rb
index b4548671bf..538ed00406 100644
--- a/activesupport/lib/active_support/core_ext/date/zones.rb
+++ b/activesupport/lib/active_support/core_ext/date/zones.rb
@@ -2,21 +2,6 @@ require 'date'
require 'active_support/core_ext/time/zones'
class Date
- # *DEPRECATED*: Use +Date#in_time_zone+ instead.
- #
- # Converts Date to a TimeWithZone in the current zone if <tt>Time.zone</tt> or
- # <tt>Time.zone_default</tt> is set, otherwise converts Date to a Time via
- # Date#to_time.
- def to_time_in_current_zone
- ActiveSupport::Deprecation.warn 'Date#to_time_in_current_zone is deprecated. Use Date#in_time_zone instead', caller
-
- if ::Time.zone
- ::Time.zone.local(year, month, day)
- else
- to_time
- end
- end
-
# Converts Date to a TimeWithZone in the current zone if Time.zone or Time.zone_default
# is set, otherwise converts Date to a Time via Date#to_time
#