Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
shivam1608 committed Jun 20, 2024
1 parent 0078e33 commit 7848476
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/me/shivzee/util/Account.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,15 @@ public String getUpdatedAt() {

/**
* Get the account creation Date/Time in ZonedDateTime format
* @return the date at which the message was sent/created/received
* @return the date at which the account was created
*/
public ZonedDateTime getCreatedDateTime() throws DateTimeParserException {
return parseToDefaultTimeZone(createdAt, "yyyy-MM-dd'T'HH:mm:ss'+00:00'");
}

/**
* Get the account update Date/Time in ZonedDateTime format
* @return the date on which the message was updated (markAsRead fires the update event)
* @return the date on which the account was updated
* @see me.shivzee.callbacks.EventListener
*/
public ZonedDateTime getUpdatedDateTime() throws DateTimeParserException {
Expand Down

0 comments on commit 7848476

Please sign in to comment.