Skip to content
Snippets Groups Projects
Commit 3bb7966c authored by felmer's avatar felmer
Browse files

SSDM-11339: Do not remove home space when deactivating a user

parent d5ee652e
No related branches found
No related tags found
No related merge requests found
...@@ -138,7 +138,6 @@ public class UpdatePersonExecutor ...@@ -138,7 +138,6 @@ public class UpdatePersonExecutor
person.setActive(false); person.setActive(false);
person.setDisplaySettings(null); person.setDisplaySettings(null);
person.clearAuthorizationGroups(); person.clearAuthorizationGroups();
person.setHomeSpace(null);
// Direct iteration over role assignments could lead to a // Direct iteration over role assignments could lead to a
// ConcurrentModificationException because roleAssignmentDAO.deleteRoleAssignment() // ConcurrentModificationException because roleAssignmentDAO.deleteRoleAssignment()
// will remove the assignment from person. // will remove the assignment from person.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment