From 9c16237ed7005d5406f348bb077a5ba0214f46b3 Mon Sep 17 00:00:00 2001 From: Francesco Mangiacrapa Date: Wed, 3 Oct 2018 15:15:48 +0000 Subject: [PATCH] removing comment git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/Common/storagehub-client-wrapper@171886 82a268e6-3cf1-43bd-a215-b396298e98cf --- .../server/WorkspaceStorageHubClientService.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/main/java/org/gcube/common/storagehubwrapper/server/WorkspaceStorageHubClientService.java b/src/main/java/org/gcube/common/storagehubwrapper/server/WorkspaceStorageHubClientService.java index ec87ca9..4316930 100644 --- a/src/main/java/org/gcube/common/storagehubwrapper/server/WorkspaceStorageHubClientService.java +++ b/src/main/java/org/gcube/common/storagehubwrapper/server/WorkspaceStorageHubClientService.java @@ -335,17 +335,6 @@ public final class WorkspaceStorageHubClientService implements Workspace{ @Override public WorkspaceItem getItem(String itemId) throws ItemNotFoundException, InternalErrorException { - /*Validate.notNull(itemId,"The input itemId is null"); - Item item; - try { - item = storageHubClientService.getItem(itemId); - } - catch (Exception e) { - logger.error("Error during get item with id: "+itemId,e); - throw new InternalErrorException(e.getMessage()); - } - return HLMapper.toWorkspaceItem(item, withAccounting, withFileDetails, withMapProperties);*/ - return getItem(itemId, withAccounting, withFileDetails, withMapProperties); }