aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/values
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/values')
-rw-r--r--activesupport/lib/active_support/values/time_zone.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/activesupport/lib/active_support/values/time_zone.rb b/activesupport/lib/active_support/values/time_zone.rb
index b7df68fe33..09896c0aee 100644
--- a/activesupport/lib/active_support/values/time_zone.rb
+++ b/activesupport/lib/active_support/values/time_zone.rb
@@ -26,10 +26,7 @@ class TimeZone
# result.
def formatted_offset( colon=true )
return "" if utc_offset == 0
- sign = (utc_offset < 0 ? -1 : 1)
- hours = utc_offset.abs / 3600
- minutes = (utc_offset.abs % 3600) / 60
- "%+03d%s%02d" % [ hours * sign, colon ? ":" : "", minutes ]
+ utc_offset.to_utc_offset_s(colon)
end
# Compute and return the current time, in the time zone represented by