Skip to content

Commit

Permalink
KNL-1588 m_lastModifiedInstant.getEpochSecond() => m_lastModifiedInst…
Browse files Browse the repository at this point in the history
…ant.toEpochMilli() (sakaiproject#5416)
  • Loading branch information
axxter99 authored Mar 22, 2018
1 parent 3a8e923 commit e47ddfe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2521,7 +2521,7 @@ public Date getModifiedDate()
{
Date date = null;
if (m_lastModifiedInstant != null) {
date = new Date(m_lastModifiedInstant.getEpochSecond());
date = new Date(m_lastModifiedInstant.toEpochMilli());
}
return date;
}
Expand Down

0 comments on commit e47ddfe

Please sign in to comment.