# File lib/core_ext/date_time/conversions.rb, line 11
  def to_time
    self.offset == 0 ? ::Time.utc(year, month, day, hour, min, sec, sec_fraction * (RUBY_VERSION < '1.9' ? 86400000000 : 1000000)) : self
  end