Fix date format

feature/top10
Aurelien Hubert 7 years ago
parent 689a87031a
commit 3c35c0fa36
  1. 2
      app/src/main/java/net/pokeranalytics/android/util/extensions/DateExtension.kt

@ -81,7 +81,7 @@ fun Date.getShortDayName() : String {
} }
// Return the month & year of the date // Return the month & year of the date
fun Date.getMonthAndYear(): String { fun Date.getMonthAndYear(): String {
return SimpleDateFormat("MMMM YYYY", Locale.getDefault()).format(this).capitalize() return SimpleDateFormat("MMMM yyyy", Locale.getDefault()).format(this).capitalize()
} }
// Return the netDuration between two dates // Return the netDuration between two dates

Loading…
Cancel
Save