Skip to content

Commit

Permalink
SPC-812, change the timestamp format
Browse files Browse the repository at this point in the history
  • Loading branch information
Donald Desloge committed Dec 4, 2013
1 parent 20851a5 commit 4020517
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -137,7 +137,7 @@ private void refreshUI() {
TopologyUI.this.markAsDirtyRecursive();

m_lastUpdateTime = System.currentTimeMillis();
m_lastUpdatedTimeLabel.setValue("Last update time: " + new SimpleDateFormat("EEE, d MMM yyyy HH:mm:ss").format(new Date(m_lastUpdateTime)));
m_lastUpdatedTimeLabel.setValue("Last update time: " + new SimpleDateFormat("EEE MMM dd yyyy hh:mm a z").format(new Date(m_lastUpdateTime)));

m_refreshInProgress = false;
}
Expand Down

0 comments on commit 4020517

Please sign in to comment.