boolean isBaseSharedFolder = false; //is false because the root shared folder is always instance of SharedFolder

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/widgets/workspace-sharing-widget@182223 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Francesco Mangiacrapa 2019-11-07 09:06:06 +00:00
parent 8cdea59175
commit 56c2a8434c
1 changed files with 1 additions and 1 deletions

View File

@ -1260,7 +1260,7 @@ public class WorkspaceSharingServiceImpl extends RemoteServiceServlet implements
List<WorkspaceACL> acls = retrieveUserACLsFromFolderContainer(rootSharedFolderContainer);
List<ExtendedWorkspaceACL> listEACL = new ArrayList<ExtendedWorkspaceACL>(acls.size());
for (WorkspaceACL workspaceACL : acls) {
boolean isBaseSharedFolder = true;
boolean isBaseSharedFolder = false; //is false because the root shared folder is always instance of SharedFolder
ExtendedWorkspaceACL eac = new ExtendedWorkspaceACL(workspaceACL.getId(),
workspaceACL.getAclType(), workspaceACL.getLabel(), workspaceACL.getDefaultValue(),
workspaceACL.getUserType(), workspaceACL.getDescription(), folderItem.getOwner(),