KEYCLOAK-6824: Remove negation of isEmpty list check

This commit is contained in:
Johannes Knutsen 2018-03-09 12:08:55 +01:00 committed by Hynek Mlnařík
parent 3826f6fae2
commit 9de8e79577

View file

@ -125,7 +125,7 @@ public class UserSessionAdapter implements UserSessionModel {
@Override
public void removeAuthenticatedClientSessions(Collection<String> removedClientUUIDS) {
if (removedClientUUIDS == null || ! removedClientUUIDS.isEmpty()) {
if (removedClientUUIDS == null || removedClientUUIDS.isEmpty()) {
return;
}