Skip to content

Commit

Permalink
Use correct dates
Browse files Browse the repository at this point in the history
  • Loading branch information
BoD committed Mar 31, 2024
1 parent 6028af1 commit 70242ba
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ import java.time.Month

private val TAG = MainViewModel::class.java.simpleName

// TODO Update this date with 2024 edition date!
private val DAY_1_DATE = LocalDate(year = 2023, month = Month.APRIL, dayOfMonth = 27)
private val DAY_1_DATE = LocalDate(year = 2024, month = Month.APRIL, dayOfMonth = 25)
private val DAY_2_DATE = DAY_1_DATE.plus(1, DateTimeUnit.DAY)

class MainViewModel(
Expand Down

0 comments on commit 70242ba

Please sign in to comment.