aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activesupport/CHANGELOG2
-rw-r--r--activesupport/lib/active_support/time_with_zone.rb5
2 files changed, 2 insertions, 5 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index c132e5372a..6cbef65ae5 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Pruning unneeded TimeWithZone#change_time_zone_to_current [Geoff Buesing]
+
* Time#zone=, #in_time_zone and #change_time_zone accept a Duration [Geoff Buesing]
* Time#in_time_zone handles Time.local instances correctly [Geoff Buesing]
diff --git a/activesupport/lib/active_support/time_with_zone.rb b/activesupport/lib/active_support/time_with_zone.rb
index c5810c2c19..6b9fed4b8f 100644
--- a/activesupport/lib/active_support/time_with_zone.rb
+++ b/activesupport/lib/active_support/time_with_zone.rb
@@ -42,11 +42,6 @@ module ActiveSupport
time.change_time_zone(new_zone)
end
- # Changes the time zone to Time.zone without converting the time
- def change_time_zone_to_current
- time.change_time_zone_to_current
- end
-
# Returns a Time.local() instance of the simultaneous time in your system's ENV['TZ'] zone
def localtime
utc.dup.localtime # use #dup because Time#localtime is destructive