method
_load
v3.2.1 -
Show latest stable
- Class:
Time
_load(marshaled_time)public
No documentation available.
# File activesupport/lib/active_support/core_ext/time/marshal.rb, line 8
def _load(marshaled_time)
time = _load_without_utc_flag(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