aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/date_time/compatibility.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/core_ext/date_time/compatibility.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/date_time/compatibility.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/activesupport/lib/active_support/core_ext/date_time/compatibility.rb b/activesupport/lib/active_support/core_ext/date_time/compatibility.rb
index 63ac4c2f3a..03e4a2adfa 100644
--- a/activesupport/lib/active_support/core_ext/date_time/compatibility.rb
+++ b/activesupport/lib/active_support/core_ext/date_time/compatibility.rb
@@ -2,15 +2,4 @@ require 'active_support/core_ext/date_and_time/compatibility'
class DateTime
prepend DateAndTime::Compatibility
-
- # Returns a <tt>Time.local()</tt> instance of the simultaneous time in your
- # system's <tt>ENV['TZ']</tt> zone.
- def getlocal(utc_offset = nil)
- utc = getutc
-
- Time.utc(
- utc.year, utc.month, utc.day,
- utc.hour, utc.min, utc.sec + utc.sec_fraction
- ).getlocal(utc_offset)
- end
end