mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Fixes the caching issue by returning a copy of the set instead of the set inside the cache.
This commit is contained in:
@@ -219,7 +219,7 @@ public class FilePlanServiceImpl extends ServiceBaseImpl
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return rmContainerCacheManager.get(storeRef);
|
return new HashSet<>(rmContainerCacheManager.get(storeRef));
|
||||||
}
|
}
|
||||||
|
|
||||||
return results;
|
return results;
|
||||||
|
Reference in New Issue
Block a user