chore: remove comment

This commit is contained in:
Jaime García
2025-08-07 03:06:01 +02:00
parent cc4d4701e1
commit d49d37d1fd

View File

@@ -27,7 +27,7 @@ open class ItemDate : Parcelable {
SimpleDateFormat("MMMM dd, yyyy", Locale.getDefault())
}
calendar.set(year ?: 0, month ?: 1, day ?: 1) // Default to 1 if day is null
calendar.set(year ?: 0, month ?: 1, day ?: 1)
return dateFormat.format(calendar.time)
}