Skip to content

Commit

Permalink
feat: reuse var
Browse files Browse the repository at this point in the history
remove duplicate method call
  • Loading branch information
jlangy committed Aug 29, 2024
1 parent e41c3bc commit dcb5932
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void authenticate(AuthenticationFlowContext context) {

for (String activeSessionClientUUID : authenticatedClientSessions.keySet()) {
if (!activeSessionClientUUID.equals(authenticatingClientUUID)) {
userSessionProvider.removeUserSession(context.getRealm(), authResult.getSession());
userSessionProvider.removeUserSession(context.getRealm(), userSessionModel);
}
}

Expand Down

0 comments on commit dcb5932

Please sign in to comment.