Revert "Exclude null case if groupManager is not set"

This reverts commit 81dc317f
This commit is contained in:
Florian Scholdei
2020-11-03 08:58:06 +01:00
parent 81dc317f3c
commit c87fa5b3e5

View File

@@ -129,7 +129,7 @@ public class SetupContextListener implements ServletContextListener {
}
private boolean authenticatedGroupDoesNotExists() {
return groupManager == null || groupManager.get(AUTHENTICATED) == null;
return groupManager.get(AUTHENTICATED) == null;
}
private void createAuthenticatedGroup() {