Change recognizing dates with short years

Short years are now added to the current centure (2000) such that date
strings like 12/26/11 result in 12/26/2011 and not 12/26/1911.
This commit is contained in:
Eike Kettner 2020-05-16 03:00:29 +02:00
parent 3e10e2175a
commit 5e6ce1737c

@ -34,7 +34,7 @@ object DateFind {
private case class SimpleDate(year: Int, month: Int, day: Int) {
def toLocalDate: LocalDate =
LocalDate.of(if (year < 100) 1900 + year else year, month, day)
LocalDate.of(if (year < 100) 2000 + year else year, month, day)
}
private object SimpleDate {