mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Merge pull request #2440 from fawhgb/rm-fileplan-caching-issue
Fixes the caching issue by returning a copy of the set instead of the Set
This commit is contained in:
@@ -219,7 +219,7 @@ public class FilePlanServiceImpl extends ServiceBaseImpl
|
||||
}
|
||||
else
|
||||
{
|
||||
return rmContainerCacheManager.get(storeRef);
|
||||
return new HashSet<>(rmContainerCacheManager.get(storeRef));
|
||||
}
|
||||
|
||||
return results;
|
||||
|
Reference in New Issue
Block a user