mirror of
https://github.com/TracksApp/tracks.git
synced 2026-03-15 16:56:32 +01:00
8 lines
129 B
Ruby
8 lines
129 B
Ruby
# typed: true
|
|
class NullTime
|
|
include Comparable
|
|
|
|
def <=>(another)
|
|
-1 # any other Time object is always greater
|
|
end
|
|
end
|