From 46e53f8bbef47829ce2a0c18879c6a3effa0e0b0 Mon Sep 17 00:00:00 2001 From: "francesco.mangiacrapa" Date: Fri, 4 Oct 2024 11:53:39 +0200 Subject: [PATCH] removed TODO --- .../server/GeoportalDataEntryServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/gcube/portlets/user/geoportaldataentry/server/GeoportalDataEntryServiceImpl.java b/src/main/java/org/gcube/portlets/user/geoportaldataentry/server/GeoportalDataEntryServiceImpl.java index 0eec0e6..fb3a868 100644 --- a/src/main/java/org/gcube/portlets/user/geoportaldataentry/server/GeoportalDataEntryServiceImpl.java +++ b/src/main/java/org/gcube/portlets/user/geoportaldataentry/server/GeoportalDataEntryServiceImpl.java @@ -239,9 +239,9 @@ public class GeoportalDataEntryServiceImpl extends RemoteServiceServlet implemen try { long endDiffMillis = System.currentTimeMillis() - startTime; long minutes = TimeUnit.MILLISECONDS.toMinutes(endDiffMillis); - LOG.info("Procedure terminated in ms: " + (endDiffMillis) + ", minutes: " + minutes); + LOG.info("Procedure terminated in ms: " + endDiffMillis + ", minutes: " + minutes); } catch (Exception e) { - // TODO: handle exception + // silent } } }