method

_load

v2.3.8 - Show latest stable - Class: Time
_load(marshaled_time)
public

No documentation available.

# File activesupport/lib/active_support/core_ext/time.rb, line 16
      def _load(marshaled_time)
        time = _original_load(marshaled_time)
        time.instance_eval do
          if defined?(@marshal_with_utc_coercion)
            val = remove_instance_variable("@marshal_with_utc_coercion")
          end
          val ? utc : self
        end
      end