chore: remove comment

This commit is contained in:
Jaime García 2025-08-07 03:06:01 +02:00
parent cc4d4701e1
commit d49d37d1fd
No known key found for this signature in database
GPG key ID: BC4E5F71A71BDA5B

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)
}