Skip to content
Snippets Groups Projects
Commit 8b33b328 authored by Adam Laskowski's avatar Adam Laskowski
Browse files

SSDM-13524: Change timestamp formatting to include timezone

parent 15d62551
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
......@@ -357,7 +357,7 @@ public abstract class EntityPropertyPE extends HibernateAbstractRegistrationHold
private String convertTimestampArrayToString(Date[] array) {
if (array == null || array.length == 0)
return "";
DateFormat dateFormat = new SimpleDateFormat(BasicConstant.DATE_HOURS_MINUTES_SECONDS_PATTERN);
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss XX");
return Stream.of(array)
.map(dateFormat::format)
.reduce((x, y) -> x + ", " + y)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment