Use Primitive.mandatory_only? for Time.at

This commit is contained in:
Koichi Sasada 2021-11-13 07:44:46 +09:00
parent dde010c974
commit 2a3d5d661c
Notes: git 2021-11-15 15:59:18 +09:00
2 changed files with 11 additions and 1 deletions

View file

@ -268,7 +268,11 @@ class Time
# :include: doc/time/in.rdoc
#
def self.at(time, subsec = false, unit = :microsecond, in: nil)
Primitive.time_s_at(time, subsec, unit, Primitive.arg!(:in))
if Primitive.mandatory_only?
Primitive.time_s_at1(time)
else
Primitive.time_s_at(time, subsec, unit, Primitive.arg!(:in))
end
end
# Returns a new \Time object based the on given arguments.