removing comment

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/Common/storagehub-client-wrapper@171886 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2018-10-03 15:15:48 +00:00
parent c93c3b89bf
commit 9c16237ed7
1 changed files with 0 additions and 11 deletions

View File

@ -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);
}