KEYCLOAK-6824: Remove negation of isEmpty list check
This commit is contained in:
parent
3826f6fae2
commit
9de8e79577
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ public class UserSessionAdapter implements UserSessionModel {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void removeAuthenticatedClientSessions(Collection<String> removedClientUUIDS) {
|
public void removeAuthenticatedClientSessions(Collection<String> removedClientUUIDS) {
|
||||||
if (removedClientUUIDS == null || ! removedClientUUIDS.isEmpty()) {
|
if (removedClientUUIDS == null || removedClientUUIDS.isEmpty()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue