From de48a6b09da983b69a821074b136476e30ef85d1 Mon Sep 17 00:00:00 2001 From: Georgy Litvinov Date: Sun, 21 Feb 2021 21:45:56 +0100 Subject: [PATCH] Removed Z at the end of dateTime to make it compatible with VIVO --- src/main/java/w2phtml/rdf/DocumentStructure.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/w2phtml/rdf/DocumentStructure.java b/src/main/java/w2phtml/rdf/DocumentStructure.java index d0f1c3d..25f085a 100644 --- a/src/main/java/w2phtml/rdf/DocumentStructure.java +++ b/src/main/java/w2phtml/rdf/DocumentStructure.java @@ -205,7 +205,7 @@ public class DocumentStructure { private void addModificationTime(Resource mainResource) { Property property = m.createProperty(TS + MODIFICATION_TIME); - SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'"); + SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss"); sd.setTimeZone(TimeZone.getTimeZone("GMT")); String todayAsString = sd.format(currentTime); mainResource.addProperty( property, todayAsString);