diff --git a/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/Formatter.kt b/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/Formatter.kt index 1ca1e71a1..ac56d8416 100644 --- a/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/Formatter.kt +++ b/app/src/main/kotlin/com/simplemobiletools/calendar/helpers/Formatter.kt @@ -19,9 +19,9 @@ object Formatter { val year = dateTime.toString(YEAR_PATTERN) val monthIndex = Integer.valueOf(dayCode.substring(4, 6))!! - 1 val month = getMonthName(context, monthIndex) - var date = month + " " + day + var date = "$month $day" if (year != DateTime().toString(YEAR_PATTERN)) - date += " " + year + date += " $year" return date }