Skip to content

Commit

Permalink
MODCONSKC-58. Fix sonar
Browse files Browse the repository at this point in the history
  • Loading branch information
SerhiiNosko committed Dec 27, 2024
1 parent 4d0f911 commit f321d83
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;
import java.util.UUID;

import lombok.RequiredArgsConstructor;
Expand All @@ -32,7 +33,7 @@
@RequiredArgsConstructor
public class UserServiceImpl implements UserService {
private static final String USER_ID = "userId";
public static final EnumSet<UserType> NOT_APPLICABLE_USER_TYPES = EnumSet.of(UserType.PATRON, UserType.DCB, UserType.SHADOW, UserType.SYSTEM);
private static final Set<UserType> NOT_APPLICABLE_USER_TYPES = EnumSet.of(UserType.PATRON, UserType.DCB, UserType.SHADOW, UserType.SYSTEM);

private final UsersKeycloakClient usersKeycloakClient;
private final UsersClient usersClient;
Expand Down

0 comments on commit f321d83

Please sign in to comment.