mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-17 15:50:13 +01:00
8 lines
115 B
Ruby
8 lines
115 B
Ruby
|
|
class NullTime
|
||
|
|
include Comparable
|
||
|
|
|
||
|
|
def <=>(another)
|
||
|
|
-1 # any other Time object is always greater
|
||
|
|
end
|
||
|
|
end
|