Skip to content

Commit

Permalink
replace Locale.ENGLISH with Locale.GERMAN
Browse files Browse the repository at this point in the history
  • Loading branch information
mahdikhashan committed Apr 27, 2024
1 parent b22183c commit 797acec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class FemaleCoderCollector : TwoStepEventCollector<String>("femalecoder") {

val currentYear = LocalDate.now().year

val localDate = LocalDate.parse("$date $currentYear", DateTimeFormatter.ofPattern("MMMM dd yyyy", Locale.ENGLISH))
val localDate = LocalDate.parse("$date $currentYear", DateTimeFormatter.ofPattern("MMMM dd yyyy", Locale.GERMAN))
val localStartTime = LocalTime.parse(startTime.uppercase(Locale.ENGLISH), DateTimeFormatter.ofPattern("hh:mm a"))

val offsetDateTime = localDate.atTime(localStartTime)
Expand Down

0 comments on commit 797acec

Please sign in to comment.