mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 02:49:32 +00:00
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:
parent
3e10e2175a
commit
5e6ce1737c
@ -34,7 +34,7 @@ object DateFind {
|
|||||||
|
|
||||||
private case class SimpleDate(year: Int, month: Int, day: Int) {
|
private case class SimpleDate(year: Int, month: Int, day: Int) {
|
||||||
def toLocalDate: LocalDate =
|
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 {
|
private object SimpleDate {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user