gitlab-org--gitlab-foss/lib/forever.rb
Nick Thomas 4aa76dddec
Remove dead MySQL code
None of this code can be reached any more, so it can all be removed
2019-07-23 16:53:03 +01:00

9 lines
115 B
Ruby

# frozen_string_literal: true
class Forever
DATE = DateTime.new(3000, 1, 1)
def self.date
DATE
end
end